C 参考手册

定义于头文件 <string.h>
int strcmp( const char *lhs, const char *rhs );

以字典序比较二个空终止字节字符串。

结果的符号是被比较的字符串中首对不同字符(都转译成 unsigned char )的值间的差的符号。

lhsrhs 不是指向空终止字节字符串的指针,则行为未定义。

参数

lhs, rhs - 指向要比较的空终止字节字符串的指针

返回值

若字典序中 lhs 先出现于 rhs 则为负值。

lhsrhs 比较相等则为零。

若字典序中 lhs 后出现于 rhs 则为正值。

注意

不同于 strcollstrxfrm ,此函数不考虑本地环境。

示例

#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 standard (ISO/IEC 9899:2011):
  • 7.24.4.2 The strcmp function (p: 365-366)
  • C99 standard (ISO/IEC 9899:1999):
  • 7.21.4.2 The strcmp function (p: 328-329)
  • C89/C90 standard (ISO/IEC 9899:1990):
  • 4.11.4.2 The strcmp function

参阅

比较两个字符串的一定数量字符
(函数)
(C95)
比较两个宽字符串
(函数)
比较两块缓冲区
(函数)
比较两个字符串,根据当前本地环境
(函数)