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

sscanf的应用

时间:2014-05-12 17:15:19      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   c   

1.提取字符串

2.提取指定长度的字符串

3.提取指定字符为止的字符串

4.取仅包含指定字符集的字符串

5.取到指定字符集为止的字符串

bubuko.com,布布扣
#include <stdio.h>
int main()
{
    char str[512]={0};
    sscanf("123456","%s",str);
    printf("str=%s\n",str);
    sscanf("123456","%4s",str);
    printf("str=%s\n",str);
    sscanf("123456 abcdef","%[^ ]",str);
    printf("str=%s\n",str);
    sscanf("123456abcdefBCDEF","%[1-9a-z]",str);
    printf("str=%s\n",str);
    sscanf("123456abcdefBCDEF","%[^A-Z]",str);
    printf("str=%s\n",str);
    return 0;
}
bubuko.com,布布扣

运行结果如下:

bubuko.com,布布扣

sscanf的应用,布布扣,bubuko.com

sscanf的应用

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/lakeone/p/3703897.html

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