linuxC语言字符串函数大全[转].doc

linuxC语言字符串函数大全[转].doc

ID:57650236

大小:55.00 KB

页数:12页

时间:2020-08-30

linuxC语言字符串函数大全[转].doc_第1页
linuxC语言字符串函数大全[转].doc_第2页
linuxC语言字符串函数大全[转].doc_第3页
linuxC语言字符串函数大全[转].doc_第4页
linuxC语言字符串函数大全[转].doc_第5页
资源描述:

《linuxC语言字符串函数大全[转].doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、函数名:stpcpy 功  能:拷贝一个字符串到另一个 用  法:char*stpcpy(char*destin,char*source); 程序例:#include #includeintmain(void) {    charstring[10];    char*str1="abcdefghi";   stpcpy(string,str1);    printf("%s",string);    return0; }       函数名:strcat 功  能:字符串拼接函数 用  法:ch

2、ar*strcat(char*destin,char*source); 程序例:#include #includeintmain(void) {    chardestination[25];    char*blank="",*c="C++",*Borland="Borland";   strcpy(destination,Borland);    strcat(destination,blank);    strcat(destination,c);   printf("%s",destina

3、tion);    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)      

4、  printf("Thecharacter%cisatposition:%d",c,ptr-string);     else        printf("Thecharacterwasnotfound");     return0; }       函数名:strcmp 功  能:串比较 用  法:intstrcmp(char*str1,char*str2); 看Asic码,str1>str2,返回值>0;两串相等,返回0程序例:#include #includeintmain(void

5、) {     char*buf1="aaa",*buf2="bbb",*buf3="ccc";     intptr;    ptr=strcmp(buf2,buf1);     if(ptr>0)        printf("buffer2isgreaterthanbuffer1");     else        printf("buffer2islessthanbuffer1");    ptr=strcmp(buf2,buf3);     if(ptr>0)        printf("buffer2isgreat

6、erthanbuffer3");     else        printf("buffer2islessthanbuffer3");    return0; }       函数名:strncmpi 功  能:将一个串中的一部分与另一个串比较,不管大小写 用  法:intstrncmpi(char*str1,char*str2,unsignedmaxlen); 程序例:#include #includeintmain(void) {    char*buf1="BBB",*buf2="bb

7、b";    intptr;   ptr=strcmpi(buf2,buf1);   if(ptr>0)       printf("buffer2isgreaterthanbuffer1");   if(ptr<0)       printf("buffer2islessthanbuffer1");   if(ptr==0)       printf("buffer2equalsbuffer1");   return0; }       函数名:strcpy 功  能:串拷贝 用  法:char*strcpy(char*st

8、r1,char*str2); 程序例:#include #includeintmain(void) {     charstring[10];     c

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。