得到istringstream的未读部分

时间:2013-07-13 19:44:26

标签: c++ c++11

我有一个测试,我从std::istringstream中获取角色。我想获得在测试期间未读取的std::istringstream部分。 std::istringstream::str()函数返回整个字符串,而不仅仅是未读部分。

如何获得字符串的这一部分?

2 个答案:

答案 0 :(得分:3)

假设您没有在此行之前手动设置输入位置指示器:

std::string unread = stream.eof()  ?  "" : stream.str().substr( stream.tellg() );

答案 1 :(得分:0)

最简单的方法是将istringstream的读缓冲区推送到字符串流:

void test(std::istringstream& iss)
{
  /* Test code */
}

int main()
{
   std::istringstream iss;
   std::stringstream not_readed_buffer;
  std::string not_readed;

   test( iss );

   if( iss )
   {
       not_readed_buffer << iss.rdbuf();
       not_readed = not_readed_buffer.str();    
   }
}

检查this answer for a similar question