C语言字符/字符串相关函数收藏大全
字符处理函数
inttolower(charch)若ch是大写字母('A'-'Z')返回相应的小写字母('a'-'z')
inttoupper(charch)若ch是小写字母('a'-'z')返回相应的大写字母('A'-'Z')
int_tolower(charch)返回ch相应的小写字母('a'-'z')
int_toupper(charch)返回ch相应的大写字母('A'-'Z')
inttoascii(charc)返回c相应的ASCII
举个栗子:
#includevoidmain(){ charch1='j'; printf("%c\n",tolower('H'));//输出:h printf("%c\n",_toupper('h'));//输出:H printf("%d\n",toascii('a'));//输出:97 }
字符判断函数
intisalpha(charch) 若ch是字母('A'-'Z','a'-'z')返回非0值,(返回1024)否则返回0
intisalnum(charch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9'),返回非0值,否则返回0
intisascii(charch) 若ch是字符(ASCII码中的0-127)返回非0值,否则返回0
intiscntrl(charch) 若ch是作废字符(0x7F)或普通控制字符(0x00-0x1F),返回非0值,否则返回0
intisdigit(charch)若ch是数字('0'-'9')返回非0值,否则返回0
intisgraph(charch) 若ch是可打印字符(不含空格)(0x21-0x7E)返回非0值,否则返回0
intislower(charch) 若ch是小写字母('a'-'z')返回非0值,否则返回0
intisupper(charch) 若ch是大写字母('A'-'Z')返回非0值,否则返回0
intisprint(charch) 若ch是可打印字符(含空格)(0x20-0x7E)返回非0值,否则返回0
intispunct(charch) 若ch是标点字符(0x00-0x1F)返回非0值,否则返回0
intisspace(charch) 若ch是空格(''),水平制表符('\t'),回车符('\r'),走纸换行('\f'),垂直制表符('\v'),换行符('\n') 返回非0值,否则返回0
intisxdigit(charch)若ch是16进制数('0'-'9','A'-'F','a'-'f')返回非0值, 否则返回0
举个栗子:
#includevoidmain(){charch1='j'; printf("%d\n",isalpha(ch1));//输出:1024 printf("%d\n",isalnum(ch1));//输出:8 printf("%d\n",isdigit(ch1));//输出:0: }
类型转换
Str->double
头文件:stdlib.h
函数原型:doublestrtod(constchar*nptr,char**endptr);
说明:nptr为原字符串,endptr原字符串转换后抛弃的后面的内容,填写NULL则不返回,原字符串数字前面只能是控制或者加减号。
返回值:正负double值
举个栗子:
#include#include voidmain(){ char*ch1="-100.65987ffjj"; char*endss; printf("%lf\n",strtod(ch1,NULL));//输出:-100.659870 printf("%lf\n",strtod(ch1,&endss));//输出:-100.659870 printf("%s\n",endss);//输出:ffjj }
Str->longint
头文件:stdlib.h
函数原型:longintstrtol(constchar*str,char**endptr,intbase)
返回值:长整型,以base提取,然后再转换为longint类型
参数:
str--要转换为长整数的字符串。
endptr--对类型为char*的对象的引用,其值由函数设置为str中数值后的下一个字符。
base--基数,必须介于2和36(包含)之间,或者是特殊值0(如0x开头的自动设置为十六进制等)。
举个栗子:
#include#include voidmain(){ char*ch1="0101jjx"; char*endss; printf("%ld\n",strtol(ch1,NULL,2));//输出:5 printf("%ld\n",strtol(ch1,&endss,10));//输出:101 printf("%s\n",endss);//输出:jjx }
Str->int
头文件:stdlib.h
原型:intatoi(constchar*nptr);
注意:原字符串开头必须是空格或者数字或者加减号
举个栗子:
#include#include voidmain(){ char*ch1="11.963xxx"; printf("%d\n",atoi(ch1));//输出:11 }
str->double
atof()字符串转换到double符点数,使用方法与stoi相似
str->longint
atol()字符串转换到long整型,使用方法与stoi相似
字符串处理函数
长度计算:
strlen()函数:
头文件:string.h
原型:intstrlen(constchar*str)
返回值:遇到'\0'或者0就返回,返回此之前的字符串长度
举个栗子:
#include#include voidmain(){ //charch[]={'a','b',0,'c'};//0或者‘\0' charch[]={'a','b','\0','c'}; printf("strlen为:%d\n",strlen(ch));//输出2 }
运算符sizeof()
C/C++中的一个操作符(operator),返回是一个对象或者类型所占的内存字节数
举个栗子:
#includevoidmain(){ charch[]={'b',0,'c'}; intinx=10; printf("ch===sizeof:%d\n",sizeof(ch));//输出:3 printf("int===sizeof:%d\n",sizeof(inx));//输出:4 }
拷贝(替换)函数:
strcpy()函数
头文件:string.h
原型:char*strcpy(char*dest,constchar*src);
返回值:将str以'\0'或者0为截止前的字符串替换dest,返回值为dest首地址或者也可以直接访问dest获得最终结果
举个栗子:
#includevoidmain(){ charch1[100]="123456789"; char*ch2="abc"; printf("%s\n",strcpy(ch1,ch2));//输出abc printf("%s\n",ch1);//输出:abc printf("%s\n",ch2);//输出:abc }
strncpy()函数
头文件:string.h
原型:char*strncpy(char*dest,constchar*src,intn)
返回值:将src以'\0'或0或者n长度为截止前的字符串替换dest,返回值为dest首地址或者也可以直接访问dest获得最终结果
注意:这个n值很重要,如果拷贝到了src最后的‘\0'则如同替换效果了,如果拷贝是n的值小于或者等于strlen(),则会保留dest未使用的内容。
举个栗子:
#include#include voidmain(){ charch1[100]="123456789"; char*ch2="abc"; printf("%s\n",strncpy(ch1,ch2,strlen(ch2)));//输出:abc456789 printf("%s\n",ch1);//输出:abc456789 printf("%s\n",ch2);//输出:abc }
比较函数
strcmp()与strncmp()函数
头文件:string.h
原型:
intstrcmp(constchar*s1,constchar*s2);
intstrncmp(constchar*s1,constchar*s2,intn);
返回值:若参数s1和s2字符串相同则返回0,s1若大于s2则返回大于0的值,s1若小于s2则返回小于0的值。
举个栗子:
#include#include voidmain(){ char*ch1="BCD"; char*ch2="BCd"; printf("%d\n",strcmp(ch1,ch2));//输出:-32 printf("%d\n",strncmp(ch1,ch2,2));//输出:0 }
strcasecm()与strncasecm()
忽略字母大小写进行比较,其他类似strcmp()函数
举个栗子
#include#include voidmain(){ char*ch1="abdc"; printf("%d\n",strncasecmp(ch1,"ABC",2));//输出:0 }
追加函数
strcat()与strncat()函数
头文件:string.h
原型:
char*strcat(char*dest,constchar*src)
char*strcat(char*dest,constchar*src,intn)
返回值:将src以追加的方式添加到dest中,返回值为dest首地址或者也可以直接访问dest获得最终结果
举个栗子:
#include#include voidmain(){ charch1[100]="BCD"; char*ch2="123456"; printf("%s\n",strcat(ch1,ch2));//输出:BCD123456 printf("%s\n",strncat(ch1,ch2,2));//输出:BCD12345612 }
查找字符
strchr()与strrchr()函数
头文件:string.h
原型:
char*strchr(constchar*s,charc)//从左向右
char*strrchr(constchar*s,charc)//从右向左
返回值:返回查找到的本身位置,如果查找失败则发货NULL
举个栗子:
#include#include voidmain(){ char*ch1="1234563221"; printf("%s\n",strchr(ch1,'3'));//输出:34563221 printf("%s\n",strrchr(ch1,'3'));//输出:3221 if(!strchr(ch1,'R')){ printf("-------------\n");//成功输出此处 } }
查找字符串
strstr()函数
头文件:string.h
原型
char*strstr(char*str1,constchar*str2);//从左向右
返回值:返回查找到的字符串中的首地址
注意:strrstr()函数是不自带的,可以通过strstr()进行模拟
举个栗子:
#include#include voidmain(){ char*ch1="1234562321"; printf("%s\n",strstr(ch1,"23"));//234562321 if(!strstr(ch1,"5566")){ printf("-------------\n");//成功输出此处 } }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对毛票票的支持。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。