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

Posted whoamboys

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言sscanf()函数详解的代码相关的知识,希望对你有一定的参考价值。

下面资料是关于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()函数详解的代码的主要内容,如果未能解决你的问题,请参考以下文章

C语言文件操作详解

C语言 sscanf用法详解

C语言之函数详解

求sprintf函数的详解,要附带例子,粘贴复制来的也可以,只要清晰内容好就行

extern “C”的作用详解

C语言详解:函数递归专题