资源描述:
《常用字符串处理函数c语言》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、常用字符串处理函数C语言常用字符串处理函数C语言.txt每天早上起床都要看一遍“福布斯”富翁排行榜,如果上面没有我的名字,我就去上班。谈钱不伤感情,谈感情最他妈伤钱。我诅咒你一辈子买方便面没有调料包。函数strlen直接就返回串str的长度!函数名:stpcpy功能:拷贝一个字符串到另一个用法:char*stpcpy(char*destin,char*source);程序例:#include#includeintmain(void){charstring[10];char*str1="abcdefghi";
2、stpcpy(string,str1);printf("%s",string);return0;}函数名:strcat功能:字符串拼接函数用法:char*strcat(char*destin,char*source);程序例:#include#includeintmain(void){chardestination[25];char*blank="",*c="C++",*Borland="Borland";strcpy(destination,Borland);strcat(destination,bl
3、ank);strcat(destination,c);printf("%s",destination);return0;}函数名:strchr功能:在一个串中查找给定字符的第一个匹配之处用法:char*strchr(char*str,charc);程序例:#include#includeintmain(void){charstring[15];char*ptr,c='r';strcpy(string,"Thisisastring");ptr=strchr(string,c);if(ptr)printf
4、("Thecharacter%cisatposition:%d",c,ptr-string);elseprintf("Thecharacterwasnotfound");return0;}函数名:strcmp功能:串比较用法:intstrcmp(char*str1,char*str2);看Asic码,str1>str2,返回值>0;两串相等,返回0程序例:#include#includeintmain(void){char*buf1="aaa",*buf2="bbb",*buf3="ccc";int
5、ptr;ptr=strcmp(buf2,buf1);if(ptr>0)printf("buffer2isgreaterthanbuffer1");elseprintf("buffer2islessthanbuffer1");ptr=strcmp(buf2,buf3);if(ptr>0)printf("buffer2isgreaterthanbuffer3");elseprintf("buffer2islessthanbuffer3");return0;}函数名:strncmpi功能:将一个串中的一部分与另一个串比较,不管大小写用
6、法:intstrncmpi(char*str1,char*str2,unsignedmaxlen);程序例:#include#includeintmain(void){char*buf1="BBB",*buf2="bbb";intptr;ptr=strcmpi(buf2,buf1);if(ptr>0)printf("buffer2isgreaterthanbuffer1");if(ptr<0)printf("buffer2islessthanbuffer1");if(ptr==0)printf("b
7、uffer2equalsbuffer1");return0;}函数名:strcpy功能:串拷贝用法:char*strcpy(char*str1,char*str2);程序例:#include#includeintmain(void){charstring[10];char*str1="abcdefghi";strcpy(string,str1);printf("%s",string);return0;}函数名:strcspn功能:在串中查找第一个给定字符集内容的段用法:intstrcspn(char
8、*str1,char*str2);程序例:#include#include#includein