strcmp
来自cppreference.com
定义于头文件 <string.h>
|
||
int strcmp( const char *lhs, const char *rhs ); |
||
以字典序比较二个空终止字节字符串。
结果的符号是被比较的字符串中首对不同字符(都转译成 unsigned char )的值间的差的符号。
若 lhs
或 rhs
不是指向空终止字节字符串的指针,则行为未定义。
参数
lhs, rhs | - | 指向要比较的空终止字节字符串的指针 |
返回值
若字典序中 lhs
先出现于 rhs
则为负值。
若 lhs
与 rhs
比较相等则为零。
若字典序中 lhs
后出现于 rhs
则为正值。
注意
不同于 strcoll 和 strxfrm ,此函数不考虑本地环境。
示例
运行此代码
#include <string.h> #include <stdio.h> void demo(const char* lhs, const char* rhs) { int rc = strcmp(lhs, rhs); const char *rel = rc < 0 ? "precedes" : rc > 0 ? "follows" : "equals"; printf("[%s] %s [%s]\n", lhs, rel, rhs); } int main(void) { const char* string = "Hello World!"; demo(string, "Hello!"); demo(string, "Hello"); demo(string, "Hello there"); demo("Hello, everybody!" + 12, "Hello, somebody!" + 11); }
输出:
[Hello World!] precedes [Hello!] [Hello World!] follows [Hello] [Hello World!] precedes [Hello there] [body!] equals [body!]
引用
- C11 标准(ISO/IEC 9899:2011):
- 7.24.4.2 The strcmp function (p: 365-366)