C语言—strcmp()

作者:追风剑情 发布于:2019-10-29 19:40 分类:C

strcmp()函数用来比较两个字符串内容是否相等。

示例: 比较字符串

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6. //引入字符串函数string.h
  7. //一些ANSI之前的系统使用strings.h头文件,而
  8. //有些系统可能根本没有字符串头文件。
  9. #include <string.h>
  10.  
  11. #define ANSWER "Grant"
  12. #define SIZE 40
  13.  
  14. char * s_gets(char * st, int n);
  15.  
  16. //argc: 参数个数 argv[]: 参数数组
  17. int main(int argc, char *argv[])
  18. {
  19. char try[SIZE];
  20.  
  21. puts("Who is buried in Grant's tomb?");
  22. s_gets(try, SIZE);
  23. //try != ANSWER 比较的是字符串地址
  24. //strcmp() 比较的是字符串内容
  25. //while (strcmp(try, ANSWER)) 也可以这样写
  26. while (strcmp(try, ANSWER) != 0)
  27. {
  28. puts("No, that's wrong. Try again.");
  29. s_gets(try, SIZE);
  30. }
  31. puts("That's right!");
  32.  
  33. system("pause");
  34. return 0;
  35. }
  36.  
  37. char * s_gets(char * st, int n)
  38. {
  39. char * ret_val;
  40. int i = 0;
  41. ret_val = fgets(st, n, stdin);
  42. if (ret_val) //即,ret_val != NULL
  43. {
  44. while (st[i] != '\n' && st[i] != '\0')
  45. i++;
  46. if (st[i] == '\n')
  47. st[i] = '\0';
  48. else
  49. while (getchar() != '\n')
  50. continue;
  51. }
  52. return ret_val;
  53. }

运行测试
1111.png

示例:strcmp()的返回值

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6. //引入字符串函数string.h
  7. //一些ANSI之前的系统使用strings.h头文件,而
  8. //有些系统可能根本没有字符串头文件。
  9. #include <string.h>
  10.  
  11. //argc: 参数个数 argv[]: 参数数组
  12. int main(int argc, char *argv[])
  13. {
  14. /*
  15. ASCII 标准规定,如果第1个字符串在第2个字符串前面,strcmp()返回一个负数;
  16. 如果两个字符串相同,strcmp()返回0;
  17. 如果第1个字符串在第2个字符串后面,strcmp()返回正数。
  18. 然而,返回的具体值取决于编译器的实现,有的编译器返回ASCII码之差。
  19. */
  20. printf("strcmp(\"A\", \"A\") is ");
  21. printf("%d\n", strcmp("A", "A"));
  22.  
  23. printf("strcmp(\"A\", \"B\") is ");
  24. printf("%d\n", strcmp("A", "B"));
  25.  
  26. printf("strcmp(\"B\", \"A\") is ");
  27. printf("%d\n", strcmp("B", "A"));
  28.  
  29. printf("strcmp(\"C\", \"A\") is ");
  30. printf("%d\n", strcmp("C", "A"));
  31.  
  32. printf("strcmp(\"Z\", \"a\") is ");
  33. printf("%d\n", strcmp("Z", "a"));
  34.  
  35. printf("strcmp(\"apples\", \"apple\") is ");
  36. printf("%d\n", strcmp("apples", "apple"));
  37.  
  38. system("pause");
  39. return 0;
  40. }

运行测试
1111.png

示例:判断用户输入

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <stdbool.h>
  6. //引入字符串函数string.h
  7. //一些ANSI之前的系统使用strings.h头文件,而
  8. //有些系统可能根本没有字符串头文件。
  9. #include <string.h>
  10.  
  11. #define SIZE 80
  12. #define LIM 10
  13. #define STOP "quit"
  14.  
  15. char * s_gets(char * st, int n);
  16.  
  17. //argc: 参数个数 argv[]: 参数数组
  18. int main(int argc, char *argv[])
  19. {
  20. char input[LIM][SIZE];
  21. int ct = 0;
  22. printf("Enter up to %d lines (type quit to quit):\n", LIM);
  23. while (ct < LIM && s_gets(input[ct], SIZE) != NULL &&
  24. strcmp(input[ct], STOP) != 0 &&
  25. input[ct][0] != '\0')
  26. {
  27. ct++;
  28. }
  29. printf("%d strings entered\n", ct);
  30.  
  31. system("pause");
  32. return 0;
  33. }
  34.  
  35. char * s_gets(char * st, int n)
  36. {
  37. char * ret_val;
  38. int i = 0;
  39. ret_val = fgets(st, n, stdin);
  40. if (ret_val) //即,ret_val != NULL
  41. {
  42. while (st[i] != '\n' && st[i] != '\0')
  43. i++;
  44. if (st[i] == '\n')
  45. st[i] = '\0';
  46. else
  47. while (getchar() != '\n')
  48. continue;
  49. }
  50. return ret_val;
  51. }

运行测试
1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号