码迷,mamicode.com
首页 > 其他好文 > 详细

C中字符串常见操作

时间:2014-05-15 01:39:40      阅读:348      评论:0      收藏:0      [点我收藏+]

标签: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 =atof(value_str);
	//	printf("%f",value);
	
	//宽字符串
	//	wchar_t proverb1[]=L"This is a wide type string";
	//	wchar_t proverb2[]=L"This is an other wide string";
	//	wchar_t wchar=L‘w‘;
	//	wchar_t wsring[]=L"wide";
	//	printf("%S\n",proverb1);//打印必须使用%S,而不是%s.
	//	
	//	printf("%d\n",wcslen(proverb1));//宽字符串长度,不包含终止字符‘\0‘
	//	
	//	wcscpy(proverb1,proverb2);//复制宽字符串
	//	wcsncpy(proverb1,proverb2,15);//复制指定长度
	//	wcscat(proverb1,proverb2);//连接宽字符串
	//	wcscmp(proverb1,proverb2);//比较大小
	//	wcsncmp(proverb1,proverb2,15);//比较指定长度的宽字符串大小
	//	wcschr(proverb1,wchar);//搜索宽字符
	//	wcsstr(proverb1,wsring);//搜索宽字符串
	
	wchar_t ina[80]=L"ss";
	fgetws(ina,sizeof(ina),stdin);//获取输入的宽字符串,指定了最大长度,和标准输入流
	printf("%S",ina);
	
	return 0;
}

C中字符串常见操作,布布扣,bubuko.com

C中字符串常见操作

标签:c   字符串   

原文地址:http://blog.csdn.net/u010142437/article/details/25834881

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!