我有一个测试,我从std::istringstream
中获取角色。我想获得在测试期间未读取的std::istringstream
部分。 std::istringstream::str()
函数返回整个字符串,而不仅仅是未读部分。
如何获得字符串的这一部分?
答案 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();
}
}