strnicmp函数

举报
悦来客栈的老板 发表于 2020/12/28 23:31:01 2020/12/28
【摘要】 函数名: strnicmp 功 能: 比较字符串str1和str2的前n个字符串字典序的大小,但是不区分字母大小写。 返回值: 当str1<str2时,返回值<0 ; 当str1=str2时,返回值=0; 当str1>str2时,返回值>0。 比较是这样进行的,先比较2个字符串的第1个字符字典序的大小,如果能比较出大小,则马上返回了,如果不能区别大小,...

函数名: strnicmp
功 能: 比较字符串str1和str2的前n个字符串字典序的大小,但是不区分字母大小写。
返回值: 当str1<str2时,返回值<0 ; 当str1=str2时,返回值=0; 当str1>str2时,返回值>0。
比较是这样进行的,先比较2个字符串的第1个字符字典序的大小,如果能比较出大小,则马上返回了,如果不能区别大小,开始比较第2个,如果这时第1个字符串已经到尽头了,第2个字符串还有字符,这时算第2个字符串大。

用 法: int strnicmp(char *str1, char *str2, unsigned maxlen);


  
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. /**
  4. * strnicmp - Case insensitive, length-limited string comparison
  5. * @s1: One string
  6. * @s2: The other string
  7. * @len: the maximum number of characters to compare
  8. */
  9. int strnicmp(const char *s1, const char *s2, size_t len)
  10. {
  11. /* Yes, Virginia, it had better be unsigned */
  12. unsigned char c1, c2;
  13. if (!len)
  14. return 0;
  15. do {
  16. c1 = *s1++;
  17. c2 = *s2++; //字符串字串同时后移
  18. if (!c1 || !c2)
  19. break; //如果是空字符,跳出
  20. if (c1 == c2)
  21. continue;
  22. c1 = tolower(c1);
  23. c2 = tolower(c2);
  24. if (c1 != c2)
  25. break;
  26. } while (--len);
  27. return (int)c1 - (int)c2;
  28. }
  29. int main(void)
  30. {
  31. char *buf1 = "BBBccc", *buf2 = "bbbccc";
  32. int nResult;
  33. nResult = strnicmp(buf2, buf1, 3);
  34. if (nResult > 0)
  35. {
  36. printf("buffer 2 is greater than buffer 1\n");
  37. }
  38. if (nResult < 0)
  39. {
  40. printf("buffer 2 is less than buffer 1\n");
  41. }
  42. if (nResult == 0)
  43. {
  44. printf("buffer 2 equals buffer 1\n");
  45. }
  46. return 0;
  47. }

文章来源: blog.csdn.net,作者:悦来客栈的老板,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq523176585/article/details/11784557

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。