有没有办法编写一个跨平台解析器来读取字符直到找到换行符?我在 Linux 中使用 '\0',但我不确定这也可以在 Windows 上完成。
std::string line;
// fill the line
QTextStream ss(&line);
for(;;)
{
ss >> c;
if(c == '"' || c=='\0' ) // here I want to continue parsing until a new-line character or a ending double quote is found
break;
}