码迷,mamicode.com
首页 > 编程语言 > 详细

C语言sscanf()函数详解的代码

时间:2019-01-17 15:21:36      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:char   内容   size   res   print   fan   函数   result   lib   

下面资料是关于C语言sscanf()函数详解的内容,希望能对各位朋友有好处。

 




说明:sscanf()会将参数str的字符串根据参数format来转换并格式化数据。



format格式


 







#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main()
{
int result;
char str[100];
char buf1[255], buf2[255], buf3[255], buf4[255];

memset(str, 0, sizeof(str));
strcpy(str, "i love china!");
result = sscanf(str, "%s %s %s", buf1, buf2, buf3);
printf("%dn%sn%sn%sn", result, buf1, buf2, buf3);

memset(str, 0, sizeof(str));
strcpy(str, "abcdefghijklmnopq");
sscanf(str, "%5s", buf4);
printf("%sn", buf4);

memset(str, 0, sizeof(str));
memset(buf1, 0, sizeof(buf1));
memset(buf2, 0, sizeof(buf2));
memset(buf3, 0, sizeof(buf3));
strcpy(str, "123456abcdedfANDFS");
sscanf(str, "%[0-9]%[a-z]%[A-Z]", buf1, buf2, buf3);
printf("%sn%sn%sn", buf1, buf2, buf3);
return 0;
}









 

C语言sscanf()函数详解的代码

标签:char   内容   size   res   print   fan   函数   result   lib   

原文地址:https://www.cnblogs.com/whoamboys/p/10281974.html

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