Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      strcmp

      From cppreference.com
      <c‎ |string‎ |byte
       
       
       
       
      Defined in header<string.h>
      int strcmp(constchar* lhs,constchar* rhs);

      Compares two null-terminated byte strings lexicographically.

      The sign of the result is the sign of the difference between the values of the first pair of characters (both interpreted asunsignedchar) that differ in the strings being compared.

      The behavior is undefined iflhs orrhs are not pointers to null-terminated byte strings.

      Contents

      [edit]Parameters

      lhs, rhs - pointers to the null-terminated byte strings to compare

      [edit]Return value

      Negative value iflhs appears beforerhs in lexicographical order.

      Zero iflhs andrhs compare equal.

      Positive value iflhs appears afterrhs in lexicographical order.

      [edit]Notes

      This function is not locale-sensitive, unlikestrcoll andstrxfrm.

      [edit]Example

      Run this code
      #include <stdio.h>#include <string.h> void demo(constchar* lhs,constchar* rhs){constint rc= strcmp(lhs, rhs);constchar* rel= rc<0?"precedes": rc>0?"follows":"equals";printf("[%s] %s [%s]\n", lhs, rel, rhs);} int main(void){constchar* string="Hello World!";    demo(string,"Hello!");    demo(string,"Hello");    demo(string,"Hello there");    demo("Hello, everybody!"+12,"Hello, somebody!"+11);}

      Output:

      [Hello World!] precedes [Hello!][Hello World!] follows [Hello][Hello World!] precedes [Hello there][body!] equals [body!]

      [edit]References

      • C23 standard (ISO/IEC 9899:2024):
      • 7.24.4.2 The strcmp function (p: TBD)
      • C17 standard (ISO/IEC 9899:2018):
      • 7.24.4.2 The strcmp function (p: TBD)
      • 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

      [edit]See also

      compares a certain amount of characters of two strings
      (function)[edit]
      (C95)
      compares two wide strings
      (function)[edit]
      compares two buffers
      (function)[edit]
      compares two strings in accordance to the current locale
      (function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/string/byte/strcmp&oldid=172146"

      [8]ページ先頭

      ©2009-2025 Movatter.jp