作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从字符串中读取数据。字符串是这样的:
"123 35 123 0 0 0 817 0 0 0 0"
字符串中有少数数字和空格是不确定的。我想读第三个数字。如何读取数据?
最佳答案
使用 sscanf()
。它将跳过空格。
int a, b, c;
if( sscanf(string, "%d %d %d", &a, &b, &c) == 3)
printf("the third number is %d\n", c);
您还可以使用 %*
来抑制前两个数字的分配:
int a;
if( sscanf(string, "%*d %*d %d", &a) == 1)
printf("the third number is %d\n", a);
请注意,sscanf()
返回它进行的成功转换(和赋值)的次数,这就是为什么必须在之前检查返回值的原因输出变量。
关于c - 如何在 C 中读取格式为 "123 35 123 0 0 0 817"的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12564199/
我是一名优秀的程序员,十分优秀!