首页 > 代码库 > C中字符串常见操作

C中字符串常见操作

#include  <stdio.h>#include <ctype.h>#include <string.h>#include <stdlib.h>#include <wchar.h>//	#include <stddef.h>int main(void){	char str1[]="This is the first string";	char str2[]="That is the other string";		//	printf(strcpy(str1,str2));//复制字符串		//	printf(strncpy(str1,str2,20));//复制字符串指定长度内容		//	printf("%d",strlen(str1));//字符串长度	    //	printf(strcat(str1,str2));//链接字符串		//	printf(strncat(str1,str2,20));//链接指定长度字符串	//		//	printf("%d",strcmp(str1,str2));//比较字符串大小	//		//	printf("%d",strncmp(str1,str2,5));//比较指定长度的字符串大小		//	char * pGot_char=strchr(str1,‘i‘);//搜索字符,返回找到字符的地址	//	printf("%c",*pGot_char);//打印地址的内容		//	if(strstr(str1,"the")==NULL){//搜索子串	//		printf("no found");	//	}		//	else {	//		printf("has found");	//	}		//	char buf[40];	//	gets(buf);//将输入的字符串读入数组中,中间可以包含空格,直到回车,不同于scanf	//	printf("%s",buf);		//相比gets,fgets可以指定输入字符串最大长度	//另外,gets只能用于标准输入流stdin,而fgets可以用于任意类型种类输入的字符串	//在输入换行符时,fgets会存储一个‘\n‘字符,而gets不会。	//	fgets(buf,sizeof(buf),stdin);	//	printf("%s",buf);		//atof字符串转double,atoi字符串转int	//atol字符串转long,atoll字符串转longlong	//	char value_str []="99.4";	//	double value =http://www.mamicode.com/atof(value_str);>