命名空间
变体
操作

std::wcscoll

来自 cppreference.com
< cpp‎ | string‎ | wide
定义在头文件 <cwchar>
int wcscoll( const wchar_t* lhs, const wchar_t* rhs );

根据 std::setlocale 最近安装的区域设置(由 LC_COLLATE 类别定义)比较两个以 null 结尾的宽字符串。

内容

[编辑] 参数

lhs, rhs - 指向要比较的以 null 结尾的宽字符串的指针

[编辑] 返回值

如果 lhs 小于(在 rhs 之前)则为负值。

0 如果 lhs 等于 rhs

如果 lhs 大于(在 rhs 之后)则为正值。

[编辑] 注释

排序顺序是字典顺序:字母在国家字母表中的位置(其等价类)比其大小写或变体优先级更高。在同一个等价类中,小写字母在等价的大写字母之前排序,并且区域设置特定的顺序可能适用于带重音符号的字符。在某些区域设置中,一组字符作为单个排序单位进行比较。例如,在捷克语中,"ch" 位于 "h" 之后,在 "i" 之前,以及在匈牙利语中,"dzs" 位于 "dz" 之后,在 "g" 之前。

[编辑] 示例

#include <clocale>
#include <iostream>
 
void try_compare(const wchar_t* p1, const wchar_t* p2)
{
    if (std::wcscoll(p1, p2) < 0)
        std::wcout << p1 << " before " << p2 << '\n';
    else
        std::wcout << p2 << " before " << p1 << '\n';
}
 
int main()
{
    std::setlocale(LC_ALL, "en_US.utf8");
    std::wcout << "In the American locale: ";
    try_compare(L"hrnec", L"chrt");
 
    std::setlocale(LC_COLLATE, "cs_CZ.utf8");
    std::wcout << "In the Czech locale: ";
    try_compare(L"hrnec", L"chrt");
 
    std::setlocale(LC_COLLATE, "en_US.utf8");
    std::wcout << "In the American locale: ";
    try_compare(L"år", L"ängel");
 
    std::setlocale(LC_COLLATE, "sv_SE.utf8");
    std::wcout << "In the Swedish locale: ";
    try_compare(L"år", L"ängel");
}

输出

In the American locale: chrt before hrnec
In the Czech locale: hrnec before chrt
In the American locale: ängel before år
In the Swedish locale: år before ängel

[编辑] 另请参阅

根据当前区域设置比较两个字符串
(函数) [编辑]
[虚拟]
使用此面元的排序规则比较两个字符串
(std::collate<CharT> 的虚拟受保护成员函数) [编辑]
转换宽字符串,以便 wcscmp 将产生与 wcscoll 相同的结果
(函数) [编辑]
C 文档 for wcscoll