获得效果的最干净的方法是istream::getline(string, 256, '\n' OR ';')
什么?
我知道编写循环非常简单,但我觉得我可能会遗漏一些东西。我是吗?
我用了什么:
while ((is.peek() != '\n') && (is.peek() != ';'))
stringstream.put(is.get());
获得效果的最干净的方法是istream::getline(string, 256, '\n' OR ';')
什么?
我知道编写循环非常简单,但我觉得我可能会遗漏一些东西。我是吗?
我用了什么:
while ((is.peek() != '\n') && (is.peek() != ';'))
stringstream.put(is.get());
有std::getline。对于更复杂的场景,可以尝试使用boost split或regex_iterator拆分istream_iterator或istreambuf_iterator(这里是使用流迭代器的示例)。
不幸的是,没有办法有多个“行尾”。您可以做的是用 eg 读取该行并将std::getline
其放入 anstd::istringstream
并在.std::getline
';'
istringstream
尽管您可以查看Boost iostreams库来查看它是否具有相应的功能。
这是一个有效的实现:
enum class cascade { yes, no };
std::istream& getline(std::istream& stream, std::string& line, const std::string& delim, cascade c = cascade::yes){
line.clear();
std::string::value_type ch;
bool stream_altered = false;
while(stream.get(ch) && (stream_altered = true)){
if(delim.find(ch) == std::string::npos)
line += ch;
else if(c == cascade::yes && line.empty())
continue;
else break;
}
if(stream.eof() && stream_altered) stream.clear(std::ios_base::eofbit);
return stream;
}
该cascade::yes
选项折叠找到的连续分隔符。使用cascade::no
,它将为找到的第二个连续分隔符返回一个空字符串。
用法:
const std::string punctuation = ",.';:?";
std::string words;
while(getline(istream_object, words, punctuation))
std::cout << word << std::endl;
查看它的用法Live on Coliru
一个更通用的版本将是这个