作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为 .obj 文件编写一个解析器,该文件的一部分格式为
f [int]/[int] [int]/[int] [int]/[int]
并且整数的长度未知。在每个 [int]/[int] 对中,它们都需要放在单独的数组中。将它们分隔为整数的最简单方法是什么?
最佳答案
你可以用 fscanf 做到这一点:
int matched = fscanf(fptr, "f %d/%d %d/%d %d/%d", &a, &b, &c, &d, &e, &f);
if (matched != 6) fail();
或者 ifstream 和 sscanf:
char buf[100];
yourIfstream.getLine(buf, sizeof(buf));
int matched = sscanf(buf, "f %d/%d %d/%d %d/%d", &a, &b, &c, &d, &e, &f);
if (matched != 6) fail();
关于c++ - 将非统一字符串解析为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16194280/
我是一名优秀的程序员,十分优秀!