C语言string函数详解.doc
《C语言string函数详解.doc》由会员分享,可在线阅读,更多相关《C语言string函数详解.doc(13页珍藏版)》请在咨信网上搜索。
C语言string函数详解 函数原型: char *strdup(const char *s) 函数功能: 字符串拷贝,目的空间由该函数分配 函数返回: 指向拷贝后的字符串指针 参数说明: src-待拷贝的源字符串 所属文件: <string.h> #include <stdio.h> #include <string.h> #include <alloc.h> int main() { char *dup_str, *string="abcde"; dup_str=strdup(string); printf("%s", dup_str); free(dup_str); return 0; } 函数名称: strcpy 函数原型: char* strcpy(char* str1,char* str2); 函数功能: 把str2指向的字符串拷贝到str1中去 函数返回: 返回str1,即指向str1的指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char string[10]; char *str1="abcdefghi"; strcpy(string,str1); printf("the string is:%s\n",string); return 0; } 函数名称: strncpy 函数原型: char *strncpy(char *dest, const char *src,int count) 函数功能: 将字符串src中的count个字符拷贝到字符串dest中去 函数返回: 指向dest的指针 参数说明: dest-目的字符串,src-源字符串,count-拷贝的字符个数 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char string[10]; char *str1="abcdefghi"; strncpy(string,str1,3); string[3]='\0'; printf("%s",string); return 0; } 函数名称: strcat 函数原型: char* strcat(char * str1,char * str2); 函数功能: 把字符串str2接到str1后面,str1最后的'\0'被取消 函数返回: str1 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char buffer[80]; strcpy(buffer,"Hello "); strcat(buffer,"world"); printf("%s\n",buffer); return 0; } 函数名称: strncat 函数原型: char *strncat(char *dest, const char *src, size_t maxlen) 函数功能: 将字符串src中前maxlen个字符连接到dest中 函数返回: 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> char buffer[80]; int main() { strcpy(buffer,"Hello "); strncat(buffer,"world",8); printf("%s\n",buffer); strncat(buffer,"*************",4); printf("%s\n",buffer); return 0; } 函数名称: strcmp 函数原型: int strcmp(char * str1,char * str2); 函数功能: 比拟两个字符串str1,str2. 函数返回: str1<str2,返回负数; str1=str2,返回 0; str1>str2,返回正数. 参数说明: 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { char *buf1="aaa", *buf2="bbb", *buf3="ccc"; int ptr; ptr=strcmp(buf2, buf1); if(ptr>0) printf("buffer 2 is greater than buffer 1\n"); else printf("buffer 2 is less than buffer 1\n"); ptr=strcmp(buf2, buf3); if(ptr>0) printf("buffer 2 is greater than buffer 3\n"); else printf("buffer 2 is less than buffer 3\n"); return 0; } 函数名称: strncmp 函数原型: int strncmp(char *str1,char *str2,int count) 函数功能: 对str1和str2中的前count个字符按字典顺序比拟 函数返回: 小于0:str1<str2,等于0:str1=str2,大于0:str1>str2 参数说明: str1,str2-待比拟的字符串,count-比拟的长度 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { int ptr; char *buf1="aaabbb",*buf2="bbbccc",*buf3="ccc"; ptr=strncmp(buf2,buf1,3); if (ptr>0) printf("buffer 2 is greater than buffer 1"); else printf("buffer 2 is less than buffer 1"); ptr=strncmp(buf2,buf3,3); if (ptr>0) printf("buffer 2 is greater than buffer 3"); else printf("buffer 2 is less than buffer 3"); return(0); } 函数名称: strpbrk 函数原型: char *strpbrk(const char *s1, const char *s2) 函数功能: 得到s1中第一个“同时也出现在s2中〞字符的位置指针 函数返回: 位置指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char *p="Find all vowels"; while(p) { printf("%s\n",p); p=strpbrk(p+1,"aeiouAEIOU"); } return 0; } 函数名称: strcspn 函数原型: int strcspn(const char *s1, const char *s2) 函数功能: 统计s1中从头开场直到第一个“来自s2中的字符〞出现的长度 函数返回: 长度 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { printf("%d\n",strcspn("abcbcadef","cba")); printf("%d\n",strcspn("xxxbcadef","cba")); printf("%d\n",strcspn("123456789","cba")); return 0; } 函数名称: strspn 函数原型: int strspn(const char *s1, const char *s2) 函数功能: 统计s1中从头开场直到第一个“不来自s2中的字符〞出现的长度 函数返回: 位置指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> #include <alloc.h> int main() { printf("%d\n",strspn("out to lunch","aeiou")); printf("%d\n",strspn("out to lunch","xyz")); return 0; } 函数名称: strchr 函数原型: char* strchr(char* str,char ch); 函数功能: 找出str指向的字符串中第一次出现字符ch的位置 函数返回: 返回指向该位置的指针,如找不到,那么返回空指针 参数说明: str-待搜索的字符串,ch-查找的字符 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { char string[15]; char *ptr, c='r'; strcpy(string, "This is a string"); ptr=strchr(string, c); if (ptr) printf("The character %c is at position: %d\n",c,ptr-string); else printf("The character was not found\n"); return 0; } 函数名称: strrchr 函数原型: char *strrchr(const char *s, int c) 函数功能: 得到字符串s中最后一个含有c字符的位置指针 函数返回: 位置指针 参数说明: 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { char string[15]; char *ptr,c='r'; strcpy(string,"This is a string"); ptr=strrchr(string,c); if (ptr) printf("The character %c is at position:%d",c,ptr-string); else printf("The character was not found"); return 0; } 函数名称: strstr 函数原型: char* strstr(char* str1,char* str2); 函数功能: 找出str2字符串在str1字符串中第一次出现的位置(不包括str2的串完毕符) 函数返回: 返回该位置的指针,如找不到,返回空指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char *str1="Open Watcom C/C++",*str2="Watcom",*ptr; ptr=strstr(str1,str2); printf("The substring is:%s\n",ptr); return 0; } 函数名称: strrev 函数原型: char *strrev(char *s) 函数功能: 将字符串中的所有字符颠倒次序排列 函数返回: 指向s的指针 参数说明: 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { char *forward="string"; printf("Before strrev():%s",forward); strrev(forward); printf("After strrev(): %s",forward); return 0; } 函数名称: strnset 函数原型: char *strnset(char *s, int ch, size_t n) 函数功能: 将字符串s中前n个字符设置为ch的值 函数返回: 指向s的指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char *string="abcdefghijklmnopqrstuvwxyz"; char letter='x'; printf("string before strnset: %s",string); strnset(string,letter,13); printf("string after strnset: %s",string); return 0; } 函数名称: strset 函数原型: char *strset(char *s, int ch) 函数功能: 将字符串s中所有字符设置为ch的值 函数返回: 指向s的指针 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char string[10]="123456789"; char symbol='c'; printf("Before strset(): %s", string); strset(string, symbol); printf("After strset(): %s", string); return 0; } 函数名称: strtok 函数原型: char *strtok(char *s1, const char *s2) 函数功能: 分解s1字符串为用特定分隔符分隔的多个字符串(一般用于将英文句分解为单词) 函数返回: 字符串s1中首次出现s2中的字符前的子字符串指针 参数说明: s2一般设置为s1中的分隔字符 规定进展子调用时〔即分割s1的第二、三与后续子串〕第一参数必须是NULL 在每一次匹配成功后,将s1中分割出的子串位置替换为NULL(摘下链中第一个环),因此s1被破坏了。函数会记忆指针位置以供下一次调用 所属文件: <string.h> #include <string.h> #include <stdio.h> int main() { char *p; char *buffer; char *delims={ " .," }; buffer=strdup("Find words, all of them."); printf("%s\n",buffer); p=strtok(buffer,delims); while(p!=NULL){ printf("word: %s\n",p); p=strtok(NULL,delims); } printf("%s\n",buffer); return 0; } 函数名称: strupr 函数原型: char *strupr(char *s) 函数功能: 将字符串s中的字符变为大写 函数返回: 参数说明: 所属文件: <string.h> #include <stdio.h> #include <string.h> int main() { char *string="abcdefghijklmnopqrstuvwxyz",*ptr; ptr=strupr(string); printf("%s",ptr); return 0; } 函数名称: strlwr 函数原型: char *strlwr(char *s) 函数功能: 将字符串中的字符变为小写字符 函数返回: 指向s的指针 参数说明: 所属文件: <string.h> #include<string.h> int main() { char str[]="HOW TO SAY?"; printf("%s",strlwr(str)); return 0; } 函数名称: strerror 函数原型: char *strerror(int errnum) 函数功能: 得到错误信息的容信息 函数返回: 错误提示信息字符串指针 参数说明: errnum-错误编号 所属文件: <string.h> #include <stdio.h> #include <errno.h> int main() { char *buffer; buffer=strerror(errno); printf("Error: %s",buffer); return 0; } 函数名称: memcpy 函数原型: void *memcpy(void *dest, const void *src, size_t n) 函数功能: 字符串拷贝 函数返回: 指向dest的指针 参数说明: src-源字符串,n-拷贝的最大长度 所属文件: <string.h>,<mem.h> #include <stdio.h> #include <string.h> int main() { char src[]="******************************"; char dest[]="abcdefghijlkmnopqrstuvwxyz0123456709"; char *ptr; printf("destination before memcpy:%s\n",dest); ptr=memcpy(dest,src,strlen(src)); if (ptr) printf("destination after memcpy:%s\n",dest); else printf("memcpy failed"); return 0; } 函数名称: memccpy 函数原型: void *memccpy(void *dest, const void *src, int c, size_t n) 函数功能: 字符串拷贝,到指定长度或遇到指定字符时停止拷贝 函数返回: 参数说明: src-源字符串指针,c-中止拷贝检查字符,n-长度,dest-拷贝底目的字符串指针 所属文件: <string.h>,<mem.h> #include <string.h> #include <stdio.h> int main() { char *src="This is the source string"; char dest[50]; char *ptr; ptr=memccpy(dest,src,'c',strlen(src)); if (ptr) { *ptr='\0'; printf("The character was found:%s",dest); } else printf("The character wasn't found"); return 0; } 函数名称: memchr 函数原型: void *memchr(const void *s, int c, size_t n) 函数功能: 在字符串中第开场n个字符中寻找某个字符c的位置 函数返回: 返回c的位置指针,返回NULL时表示未找到 参数说明: s-要搜索的字符串,c-要寻找的字符,n-指定长度 所属文件: <string.h>,<mem.h> #include <string.h> #include <stdio.h> int main() { char str[17]; char *ptr; strcpy(str,"This is a string"); ptr=memchr(str,'r',strlen(str)); if (ptr) printf("The character 'r' is at position: %d",ptr-str); else printf("The character was not found"); return 0; } 函数名称: memcmp 函数原型: int memcmp(const void *s1, const void *s2,size_t n) 函数功能: 按字典顺序比拟两个串s1和s2的前n个字节 函数返回: <0,=0,>0分别表示s1<,=,>s2 参数说明: s1,s2-要比拟的字符串,n-比拟的长度 所属文件: <string.h>,<mem.h> #include <stdio.h> #include <string.h> int main() { char *buf1="ABCDE123"; char *buf2="abcde456"; int stat; stat=memcmp(buf1,buf2,5); printf("The strings to position 5 are "); if(stat) printf("not "); printf("the same\n"); return 0; } 函数名称: memicmp 函数原型: int memicmp(const void *s1, const void *s2, size_t n) 函数功能: 按字典顺序、不考虑字母大小写对字符串s1,s2前n个字符比拟 函数返回: <0,=0,>0分别表示s1<,=,>s2 参数说明: s1,s2-要比拟的字符串,n-比拟的长度 所属文件: <string.h>,<mem.h> #include <stdio.h> #include <string.h> int main() { char *buf1="ABCDE123"; char *buf2="abcde456"; int stat; stat=memicmp(buf1,buf2,5); printf("The strings to position 5 are "); if(stat) printf("not"); printf("the same"); return 0; } 函数名称: memmove 函数原型: void *memmove(void *dest, const void *src, size_t n) 函数功能: 字符串拷贝 函数返回: 指向dest的指针 参数说明: src-源字符串,n-拷贝的最大长度 所属文件: <string.h>,<mem.h> #include <string.h> #include <stdio.h> int main() { char dest[40]="abcdefghijklmnopqrstuvwxyz0123456789"; printf("destination prior to memmove:%s\n",dest); memmove(dest+1,dest,35); printf("destination after memmove:%s",dest); return 0; } 13 / 13- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 语言 string 函数 详解
咨信网温馨提示:
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【二***】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【二***】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【二***】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【二***】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。
关于本文