如何在读取文本文件时跳到每行中找到的最后一个数字后的下一行?

时间:2015-07-10 10:50:02

标签: c++ parsing input output readfile

我的文本文件如下所示:

1    2   3      test//test
4    5   6    dummy//dummy

如何阅读此文件并仅处理每行中的数字?

1 个答案:

答案 0 :(得分:5)

两种方式:

  1. ignoring the rest of the line

  2. reading the complete line进入a string,将字符串放入an output string stream,并只读取输出字符串流中的前三个数字。