命名空间
变体
操作

std::strcoll

来自 cppreference.com
< cpp‎ | string‎ | byte
定义于头文件 <cstring>
int strcoll( const char* lhs, const char* rhs );

根据由 LC_COLLATE 类别定义的当前区域设置,比较两个以空字符结尾的字节字符串。

内容

[编辑] 参数

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

[编辑] 返回值

  • 如果 lhs 小于(在)rhs,则为负值。
  • 0 如果 lhs 等于 rhs
  • 如果 lhs 大于(在)rhs,则为正值。

[编辑] 备注

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

[编辑] 示例

#include <clocale>
#include <cstring>
#include <iostream>
 
int main()
{
    std::setlocale(LC_COLLATE, "cs_CZ.utf8");
    // Alternatively, ISO-8859-2 (a.k.a. Latin-2)
    // may also work on some OS:
    // std::setlocale(LC_COLLATE, "cs_CZ.iso88592");
 
    const char* s1 = "hrnec";
    const char* s2 = "chrt";
 
    std::cout << "In the Czech locale: ";
    if (std::strcoll(s1, s2) < 0)
        std::cout << s1 << " before " << s2 << '\n';
    else
        std::cout << s2 << " before " << s1 << '\n';
 
    std::cout << "In lexicographical comparison: ";
    if (std::strcmp(s1, s2) < 0)
        std::cout << s1 << " before " << s2 << '\n';
    else
        std::cout << s2 << " before " << s1 << '\n';
}

输出

In the Czech locale: hrnec before chrt
In lexicographical comparison: chrt before hrnec

[编辑] 参见

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