gpt4 book ai didi

c - 如何在 C 中读取格式为 "123 35 123 0 0 0 817"的数据

转载 作者:行者123 更新时间:2023-12-04 12:06:01 26 4
gpt4 key购买 nike

我想从字符串中读取数据。字符串是这样的:

"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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com