本文介绍了如何使用sscanf说明符从一串文本中扫描一个数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在文本文件中的字符串末尾扫描一个int值。



字符串如下所示:



maxdifference = 7



我如何使用sscanf只读取7的值?



我尝试过:



I am trying to scan in an int value at the end of a string in a text file.

The string reads like this:

maxdifference = 7

How would i use sscanf to read the value of 7 only?

What I have tried:

sscanf(str, " %d", &settings->max_difference);

推荐答案

char* str = "maxdifference = 7";
char string[100];
int val;
int filled = sscanf(str, "%s = %d", string, &val);
printf("read   : %d\ninteger: %d\n", filled, val);


这篇关于如何使用sscanf说明符从一串文本中扫描一个数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 08:23