C语言—ctype.h字符函数和字符串

作者:追风剑情 发布于:2019-11-13 19:42 分类:C

ctype.h存放了与字符处理相关的函数。ctype.h中的函数通常作为宏(macro)来实现。这些C预处理器宏的作用很像函数,但是两者有一些重要的区别。

示例

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7.  
  8. #define LIMIT 81
  9. void ToUpper(char *);
  10. int PunctCount(const char *);
  11.  
  12. //argc: 参数个数 argv[]: 参数数组
  13. int main(int argc, char *argv[])
  14. {
  15. char line[LIMIT];
  16. char * find;
  17.  
  18. puts("Please enter a line:");
  19. fgets(line, LIMIT, stdin);
  20. find = strchr(line, '\n');//查找换行符
  21. if (find)//如果地址不是NULL
  22. *find = '\0';//替换为空字符(空字符的编码为0)
  23. ToUpper(line);
  24. puts(line);
  25. printf("That line has %d punctuation characters.\n", PunctCount(line));
  26.  
  27. system("pause");
  28. return 0;
  29. }
  30.  
  31. // 字符串转大写
  32. void ToUpper(char * str)
  33. {
  34. while (*str)
  35. {
  36. //ANSI C之前的做法需要先判断是否为小写
  37. //if (islower(*str))
  38. //*str = toupper(*str);
  39. *str = toupper(*str);
  40. str++;
  41. }
  42. }
  43.  
  44. // 统计标点符号个数
  45. int PunctCount(const char * str)
  46. {
  47. int ct = 0;
  48. while (*str)
  49. {
  50. //是否为标点符号
  51. if (ispunct(*str))
  52. ct++;
  53. str++;
  54. }
  55. return ct;
  56. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号