龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 软件开发 > C/C++开发 >

C语言字符串函数集锦(一)(1)(2)

时间:2011-04-12 23:18来源:未知 作者:admin 点击:
分享到:
7、函数名: strcspn 功 能: 在串中查找第一个给定字符集内容的段 用 法: int strcspn( char *str1, char *str2); 程序例: #includestdio.h #includestring.h #includealloc.h int main(

7、函数名: strcspn

功 能: 在串中查找第一个给定字符集内容的段

用 法:

  1. int strcspn(char *str1, char *str2);  

程序例:

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. #include <alloc.h>   
  4. int main(void)   
  5. {   
  6. char *string1 = "1234567890";   
  7. char *string2 = "747DC8";   
  8. int length;   
  9. length = strcspn(string1, string2);   
  10. printf("Character where strings intersect is at position %d\n", length);   
  11. return 0;   
  12. }  

8、函数名: strdup

功 能: 将串拷贝到新建的位置处

用 法:

  1. char *strdup(char *str);  

程序例:

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. #include <alloc.h>   
  4. int main(void)   
  5. {   
  6. char *dup_str, *string = "abcde";   
  7. dup_str = strdup(string);   
  8. printf("%s\n", dup_str);   
  9. free(dup_str);   
  10. return 0;   
  11. }  

9、函数名: stricmp

功 能: 以大小写不敏感方式比较两个串

用 法:

  1. int stricmp(char *str1, char *str2);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "BBB", *buf2 = "bbb";   
  6. int ptr;   
  7. ptr = stricmp(buf2, buf1);   
  8. if (ptr > 0)   
  9. printf("buffer 2 is greater than buffer 1\n");   
  10. if (ptr < 0)   
  11. printf("buffer 2 is less than buffer 1\n");   
  12. if (ptr == 0)   
  13. printf("buffer 2 equals buffer 1\n");   
  14. return 0;   
  15. }  

10、函数名: strerror

功 能: 返回指向错误信息字符串的指针

用 法:

  1. char *strerror(int errnum);  

程序例:

  1. #include <stdio.h>   
  2. #include <errno.h>   
  3. int main(void)   
  4. {   
  5. char *buffer;   
  6. buffer = strerror(errno);   
  7. printf("Error: %s\n", buffer);   
  8. return 0;   
  9. }  

11、函数名: strcmpi

功 能: 将一个串与另一个比较, 不管大小写

用 法:

  1. int strcmpi(char *str1, char *str2);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "BBB", *buf2 = "bbb";   
  6. int ptr;   
  7. ptr = strcmpi(buf2, buf1);   
  8. if (ptr > 0)   
  9. printf("buffer 2 is greater than buffer 1\n");   
  10. if (ptr < 0)   
  11. printf("buffer 2 is less than buffer 1\n");   
  12. if (ptr == 0)   
  13. printf("buffer 2 equals buffer 1\n");   
  14. return 0;   
  15. }  

12、函数名: strncmp

功 能: 串比较

用 法:

  1. int strncmp(char *str1, char *str2, int maxlen);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "aaabbb", *buf2 = "bbbccc", *buf3 = "ccc";   
  6. int ptr;   
  7. ptr = strncmp(buf2,buf1,3);   
  8. if (ptr > 0)   
  9. printf("buffer 2 is greater than buffer 1\n");   
  10. else   
  11. printf("buffer 2 is less than buffer 1\n");   
  12. ptr = strncmp(buf2,buf3,3);   
  13. if (ptr > 0)   
  14. printf("buffer 2 is greater than buffer 3\n");   
  15. else   
  16. printf("buffer 2 is less than buffer 3\n");   
  17. return(0);   
  18. }  

接下一篇,C语言字符串函数集锦(二)

【编辑推荐】



精彩图集

赞助商链接