C++ - repeatedly using istringstream

坚强是说给别人听的谎言 提交于 2019-11-26 11:21:31

问题


I have a code for reading files with float numbers on line stored like this: \"3.34|2.3409|1.0001|...|1.1|\". I would like to read them using istringstream, but it doesn\'t work as I would expect:

  string row;
  string strNum;

  istringstream separate;  // textovy stream pro konverzi

   while ( getline(file,row) ) {
      separate.str(row);  // = HERE is PROBLEM =
      while( getline(separate, strNum, \'|\') )  { // using delimiter
        flNum = strToFl(strNum);    // my conversion
        insertIntoMatrix(i,j,flNum);  // some function
        j++;
      }
      i++;
    }

In marked point, row is copied into separate stream only first time. In next iteration it doesn\'t work and it does nothing. I expected it is possible to be used more times without constructing new istringstream object in every iteration.


回答1:


After setting the row into the istringstream...

separate.str(row);

... reset it by calling

separate.clear();

This clears any iostate flags that are set in the previous iteration or by setting the string. http://www.cplusplus.com/reference/iostream/ios/clear/




回答2:


You need to add a separate.clear(); line after separate.str(row) to clear the status bits, otherwise the eofbit gets set and subsequent reads fail.



来源:https://stackoverflow.com/questions/2767298/c-repeatedly-using-istringstream

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!