C语言库函数篇1:sscanf用法

一、前言

本节,我们将学习C语言库函数sscanf()的使用,使用sscanf可以快速的从复杂字符串中获取自己需要的数据。

二、基础知识

1.简介

sscanf与scanf类似,都是用于输入的,只是后者以键盘(stdin)为输入源,前者以固定字符串为输入源。

2.函数描述

int sscanf(const char buffer, const char format, [argument]...);
参数:
buffer:需要解析的源字符串
format:窗体控件字符串,定义解析字符串的规则,可以是一个或多个
{%[*] [width] [{h | I | I64 | L}]type | ‘ ‘ | ‘\t‘ | ‘\n‘ | 非%符号}
argument:可选变量,用来存储按照format规则解析buffer的结果

注:
(1) 亦可用于格式中, (即 %d 和 %s) 加了星号 () 表示跳过此数据。 (也就是不把此数据读入参数中)
(2) {a|b|c}表示a,b,c中选一,[d],表示可以有d也可以没有d。
(3) width表示读取宽度。
(4) {h | l | I64 | L}:参数的size,通常h表示单字节size,I表示2字节 size,L表示 4字节size(double例外),l64表示8字节size。
(5) type :这就很多了,就是%s,%d之类。
(6) 特别的:%*[width] [{h | l | I64 | L}]type 表示满足该条件的被过滤掉, 不会向目标参数中写入值,失败返回0 ,否则返回格式化的参数个数
(7) 如果读取的字符串,不是以空格来分隔的话,就可以使用%[]。

使用时候需要包含头文件:#include<stdio.h>

三、基础知识

1.简单用法

#include <stdio.h>

 char *str = "123456 hello world";

int main(void)
{
  int num = 0;
  char str1[64] = { 0x00 };
  char str2[64] = { 0x00 };

  sscanf(str, "%d %s %", &num, str1, str2);
  printf("num : %d\r\nstr1 : %s\r\nstr2 : %s\r\n", num, str1, str2);

  return 0;
}

执行结果如下:

2.取指定长度字符串

#include <stdio.h>
char *str  = "123456";
int main(void)
{
  char res[64] = { 0x00 };
  sscanf(str, "%4s", res);
  printf("res is: %s\r\n", res);

  return 0;
}

执行结果如下:

3. * 格式使用

(*)表示跳过此数据不读入,也就是不把数据读入参数中

#include <stdio.h>

int main(void)
{
  char *str  = "123456hello world";
  char res[64] = { 0x00 };
  char res1[64] = { 0x00 };

  sscanf(str, "%*d%s %s", res, res1);
  printf("res is: %s\r\nres1 is: %s\r\n", res, res1);
  return 0;
}

执行结果如下:

4. %[]格式使用

(1) 获取遇到指定字符为止的字符串

#include <stdio.h>
int main(void)
{
  char *str  = "hello+world";
  char res[64] = { 0x00 };
  char res1[64] = { 0x00 };

  sscanf(str, "%[^+]+%s", res, res1);
  printf("res is: %s\r\nres1 is: %s\r\n", res, res1);
  return 0;
}

执行结果如下:

(2) 获取遇到空格为止的字符串

#include <stdio.h>
int main(void)
{
  char *str  = "hello world";
  char res[64] = { 0x00 };
  char res1[64] = { 0x00 };

  sscanf(str, "%[^ ] %s", res, res1);
  printf("res is: %s\r\nres1 is: %s\r\n", res, res1);
  return 0;
}

执行结果如下:

5.取指定字符集的字符串

#include <stdio.h>
int main(void)
{
  char *str  = "hello123456HELLO";
  char res[64] = { 0x00 };

  sscanf(str, "%[a-z1-9]", res);
  printf("res is: %s\r\n", res);
  return 0;
}

执行结果如下:

四、结语

本节完,实际操作过程中需要注意的地方有如下几点:

(1) %[^]只取到指定字符串,如继续获取之后字符串需要做处理,如上述第4小例。

此次执行不能正常获取到"world"而获取了“+world",就是由于%[^]不取该字符,使用时候需要特别注意。

2.后记:

如您在使用过程中有任何问题,请加QQ群进一步交流,也可以github提Issue。

QQ交流群:906015840 (备注:物联网项目交流)

github仓库地址:https://github.com/solitary-sand/c

一叶孤沙出品:一沙一世界,一叶一菩提

原文地址:https://blog.51cto.com/14616151/2458629

时间: 2024-11-05 20:30:12

C语言库函数篇1:sscanf用法的相关文章

C语言 sscanf用法详解

/* sscanf用法详解 */ #include <stdio.h> /* sscanf头文件 */ #include <stdlib.h> #include <string.h> /* sscanf 读取格式化的字符串中的数据. swscanf 是 sscanf 的宽字符版本:swscanf 的参数是宽字符串. swscanf不处理 Unicode 全角十六进制或"兼容性区"字符. 除此以外,swscanf 和 sscanf 的行为完全相同. 函

C语言库函数大全及应用实例十二

原文:C语言库函数大全及应用实例十二                                          [编程资料]C语言库函数大全及应用实例十二 函数名: setrgbpalette 功 能: 定义IBM8514图形卡的颜色 用 法: void far setrgbpalette(int colornum, int red, int green, int blue); 程序例: #i nclude #i nclude #i nclude #i nclude int main(v

Unix/Linux环境C编程入门教程(41) C语言库函数的文件操作详解

?? 上一篇博客我们讲解了如何使用Linux提供的文件操作函数,本文主要讲解使用C语言提供的文件操作的库函数. 1.函数介绍 fopen(打开文件) 相关函数 open,fclose 表头文件 #include<stdio.h> 定义函数 FILE * fopen(const char * path,const char * mode); 函数说明 参数path字符串包含欲打开的文件路径及文件名,参数mode字符串则代表着流形态. mode有下列几种形态字符串: r 打开只读文件,该文件必须存

C语言中一些乱七八糟的用法与细节(不断更新)

用C语言比较多,这篇是平时攒下的.有些内容在工作后可能会很常见,但是不用容易忘,所以就写篇博客吧. 一.printf的用法 %*可以用来跳过字符,可以用于未知缩进.像下面一样. for(i = 1; i < 10; i++) { printf("%*c\r%*c\n",  9 - abs(i - 5), '*', abs(i - 5) + 1, '*'); } %[]可以用来读取指定的内容,%[^]可以用来忽略指定内容(正则表达式?) %m可以不带参数,输出产生的错误信息 二.关

C语言库函数大全及应用实例六

原文:C语言库函数大全及应用实例六                                              [编程资料]C语言库函数大全及应用实例六 函数名: getlinesettings 功 能: 取当前线型.模式和宽度 用 法: void far getlinesettings(struct linesettingstype far *lininfo): 程序例: #i nclude #i nclude #i nclude #i nclude /* the names o

C语言库函数大全及应用实例十四

原文:C语言库函数大全及应用实例十四                                       [编程资料]C语言库函数大全及应用实例十四 函数名: strset 功 能: 将一个串中的所有字符都设为指定字符 用 法: char *strset(char *str, char c); 程序例: #i nclude #i nclude int main(void) { char string[10] = "123456789"; char symbol = 'c'; p

C语言库函数大全及应用实例九

原文:C语言库函数大全及应用实例九                                                [编程资料]C语言库函数大全及应用实例九 函数名: mktemp 功 能: 建立唯一的文件名 用 法: char *mktemp(char *template); 程序例: #i nclude #i nclude int main(void) { /* fname defines the template for the temporary file. */ char

C语言库函数大全及应用实例十三

原文:C语言库函数大全及应用实例十三                                          [编程资料]C语言库函数大全及应用实例十三 函数名: stat 功 能: 读取打开文件信息 用 法: int stat(char *pathname, struct stat *buff); 程序例: #i nclude #i nclude #i nclude #define FILENAME "TEST.$$$" int main(void) { struct st

C语言库函数大全及应用实例十

原文:C语言库函数大全及应用实例十                                             [编程资料]C语言库函数大全及应用实例十 函数名: qsort 功 能: 使用快速排序例程进行排序 用 法: void qsort(void *base, int nelem, int width, int (*fcmp)()); 程序例: #i nclude #i nclude #i nclude int sort_function( const void *a, con