5

获得效果的最干净的方法是istream::getline(string, 256, '\n' OR ';')什么?

我知道编写循环非常简单,但我觉得我可能会遗漏一些东西。我是吗?

我用了什么:

while ((is.peek() != '\n') && (is.peek() != ';'))
    stringstream.put(is.get());
4

3 回答 3

3

std::getline。对于更复杂的场景,可以尝试使用boost splitregex_iterator拆分istream_iteratoristreambuf_iterator这里是使用流迭代器的示例)。

于 2012-10-15T07:23:51.460 回答
3

不幸的是,没有办法有多个“行尾”。您可以做的是用 eg 读取该行并将std::getline其放入 anstd::istringstream并在.std::getline';'istringstream

尽管您可以查看Boost iostreams库来查看它是否具有相应的功能。

于 2012-10-15T07:47:52.340 回答
0

这是一个有效的实现:

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

一个更通用的版本将是这个

于 2016-08-26T20:54:45.543 回答