标签: c++ parsing input output readfile
我的文本文件如下所示:
1 2 3 test//test 4 5 6 dummy//dummy
如何阅读此文件并仅处理每行中的数字?
答案 0 :(得分:5)
两种方式:
按ignoring the rest of the line。
按reading the complete line进入a string,将字符串放入an output string stream,并只读取输出字符串流中的前三个数字。