成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

C語(yǔ)言字符串函數(shù)集錦(一)

開(kāi)發(fā) 后端
本文介紹的是C語(yǔ)言中的字符串函數(shù),每個(gè)函數(shù)都介紹了用法,并舉例介紹的。希望對(duì)大家有幫助,一起來(lái)看。

說(shuō)起字符串函數(shù),我想大家都不陌生。字符串函數(shù)對(duì)二進(jìn)制數(shù)據(jù)、字符串和表達(dá)式執(zhí)行不同的運(yùn)算。下面總結(jié)了C語(yǔ)言中的字符串函數(shù)。

1、函數(shù)名: stpcpy

功 能: 拷貝一個(gè)字符串到另一個(gè)

用 法:

  1. char *stpcpy(char *destin, char *source);  

 

程序例:

 

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. int main(void)   
  4. {   
  5. char string[10];   
  6. char *str1 = "abcdefghi";   
  7. stpcpy(string, str1);   
  8. printf("%s\n", string);   
  9. return 0;   
  10. }  

2、函數(shù)名: strcat

功 能: 字符串拼接函數(shù)

用 法:

  1. char *strcat(char *destin, char *source);  

 

程序例:

 

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char destination[25];   
  6. char *blank = " ", *c = "C++", *Borland = "Borland";   
  7. strcpy(destination, Borland);   
  8. strcat(destination, blank);   
  9. strcat(destination, c);   
  10. printf("%s\n", destination);   
  11. return 0;   
  12. }  

3、函數(shù)名: strchr

功 能: 在一個(gè)串中查找給定字符的第一個(gè)匹配之處\

用 法:

  1. char *strchr(char *str, char c);  

 

程序例:

 

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char string[15];   
  6. char *ptr, c = 'r';   
  7. strcpy(string, "This is a string");   
  8. ptr = strchr(string, c);   
  9. if (ptr)   
  10. printf("The character %c is at position: %d\n", c, ptr-string);   
  11. else   
  12. printf("The character was not found\n");   
  13. return 0;   
  14. }  

4、函數(shù)名: strcmp

功 能: 串比較

用 法:

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

 

看Asic碼,str1>str2,返回值 > 0;兩串相等,返回0

程序例:

 

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc";   
  6. int ptr;   
  7. ptr = strcmp(buf2, buf1);   
  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 = strcmp(buf2, buf3);   
  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. }  

5、函數(shù)名: strncmpi

功 能: 將一個(gè)串中的一部分與另一個(gè)串比較, 不管大小寫(xiě)

用 法:

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

 

程序例:

 

  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. }  

6、函數(shù)名: strcpy

功 能: 串拷貝

用 法:

  1. char *strcpy(char *str1, char *str2);  

 

程序例:

 

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. int main(void)   
  4. {   
  5. char string[10];   
  6. char *str1 = "abcdefghi";   
  7. strcpy(string, str1);   
  8. printf("%s\n", string);   
  9. return 0;   
  10. }  

#p#

7、函數(shù)名: strcspn

功 能: 在串中查找第一個(gè)給定字符集內(nèi)容的段

用 法:

  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、函數(shù)名: 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、函數(shù)名: stricmp

功 能: 以大小寫(xiě)不敏感方式比較兩個(gè)串

用 法:

  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、函數(shù)名: strerror

功 能: 返回指向錯(cuò)誤信息字符串的指針

用 法:

  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、函數(shù)名: strcmpi

功 能: 將一個(gè)串與另一個(gè)比較, 不管大小寫(xiě)

用 法:

  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、函數(shù)名: 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語(yǔ)言字符串函數(shù)集錦(二)

責(zé)任編輯:于鐵 來(lái)源: 互聯(lián)網(wǎng)
相關(guān)推薦

2011-07-15 12:41:53

C語(yǔ)言

2010-07-19 15:07:46

Perl字符串處理函數(shù)

2021-10-14 15:34:48

C語(yǔ)言字符串函數(shù)

2009-08-06 16:01:09

C#字符串函數(shù)大全

2014-01-02 16:14:10

PostgreSQL字符串

2022-11-10 07:43:45

2009-09-01 17:41:53

C#截取字符串函數(shù)

2010-10-09 11:54:46

MySQL字符串

2010-02-02 18:01:47

C++字符串替換函數(shù)

2010-09-09 11:48:00

SQL函數(shù)字符串

2010-07-14 16:35:52

Perl字符串處理函數(shù)

2010-11-08 17:07:41

SQL Server字

2010-11-26 10:14:40

MySQL repla

2024-05-30 12:17:25

2009-11-24 09:55:44

PHP字符串函數(shù)

2021-08-20 06:58:31

C++Python函數(shù)

2023-03-21 15:27:00

RedisC語(yǔ)言字符串

2024-02-20 20:12:09

C語(yǔ)言字符串Redis

2009-08-07 14:15:21

C#字符串分割

2009-08-07 14:22:56

C#字符串搜索
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)

主站蜘蛛池模板: 高清欧美性猛交xxxx黑人猛交 | 91久操网 | 国产精品一区二区在线播放 | 91免费版在线观看 | 永久免费av| 91伊人 | 国产精品国产三级国产aⅴ原创 | 九九热精品视频 | 中文字幕一区二区三区在线观看 | 在线色网址| 久久国产精品一区二区三区 | 天堂成人国产精品一区 | 久久久精品影院 | 91视频久久| 一级在线免费观看 | 成人精品在线视频 | 日韩第一夜 | 亚洲精品久久久久久一区二区 | 99精品视频在线 | 亚洲一区视频在线播放 | 九九色综合 | 一区二区三区四区在线视频 | 亚洲自拍偷拍视频 | 久久久五月天 | 玖玖免费| 国产色婷婷久久99精品91 | 欧美亚洲另类丝袜综合网动图 | wwww.8888久久爱站网 | 久久久91 | 看羞羞视频免费 | 精品免费国产视频 | 久久久国产精品视频 | 午夜在线精品 | 亚洲欧美精品 | 亚洲第一色av | а√中文在线8 | 久久久久久亚洲欧洲 | 欧美日韩精品在线一区 | 久久99久久久久 | 91久久久久久久 | 九九免费 |