strcoll
来自 cppreference.com
定义在头文件 <string.h> 中 |
||
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 <locale.h> #include <stdio.h> #include <string.h> int main(void) { setlocale(LC_COLLATE, "cs_CZ.utf8"); // Alternatively, ISO-8859-2 (a.k.a. Latin-2) // may also work on some OS: // setlocale(LC_COLLATE, "cs_CZ.iso88592"); const char* s1 = "hrnec"; const char* s2 = "chrt"; printf("In the Czech locale: "); if (strcoll(s1, s2) < 0) printf("%s before %s\n", s1, s2); else printf("%s before %s\n", s2, s1); printf("In lexicographical comparison: "); if (strcmp(s1, s2) < 0) printf("%s before %s\n", s1, s2); else printf("%s before %s\n", s2, s1); }
输出
In the Czech locale: hrnec before chrt In lexicographical comparison: chrt before hrnec
[编辑] 参考
- C23 标准 (ISO/IEC 9899:2024)
- 7.24.4.3 strcoll 函数 (p: TBD)
- C17 标准 (ISO/IEC 9899:2018)
- 7.24.4.3 strcoll 函数 (p: TBD)
- C11 标准 (ISO/IEC 9899:2011)
- 7.24.4.3 strcoll 函数 (p: 366)
- C99 标准 (ISO/IEC 9899:1999)
- 7.21.4.3 strcoll 函数 (p: 329)
- C89/C90 标准 (ISO/IEC 9899:1990)
- 4.11.4.3 strcoll 函数
[编辑] 另请参阅
(C95) |
根据当前区域设置比较两个宽字符串 (函数) |
转换字符串,以便 strcmp 将产生与 strcoll 相同的结果 (函数) | |
(C95) |
转换宽字符串,以便 wcscmp 将产生与 wcscoll 相同的结果 (函数) |
比较两个字符串 (函数) | |
C++ 文档 for strcoll
|