两个连续的换行符作为分隔符 - C/C++

发布于 2024-12-11 22:05:22 字数 161 浏览 0 评论 0原文

我正在下面编写一个 getline 函数,但我希望分隔字符是两个连续的换行符,这样函数一旦到达空白行就停止读取。

in.getline(temp, 127, delimiter);

可以用 getline 来做到这一点吗?

I'm writing a getline function below but I want the delimiting character to be two consecutive newline characters such the function stops reading once it reaches a blank line.

in.getline(temp, 127, delimiter);

Is it possible to do this with getline?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花心好男孩 2024-12-18 22:05:22

不,但是一个 simple(不像我一开始想象的那么简单)循环就可以做到。

std::string s, temp;
while (std::getline(in, temp, delimiter) && !temp.empty())
    s += temp, s += delimiter;
if (!s.empty())
    s.resize(s.size() - 1) // or s.pop_back() if C++11

No, but a simple(not quite as simple as I thought at first) loop will do it.

std::string s, temp;
while (std::getline(in, temp, delimiter) && !temp.empty())
    s += temp, s += delimiter;
if (!s.empty())
    s.resize(s.size() - 1) // or s.pop_back() if C++11
时间你老了 2024-12-18 22:05:22

istream::getline 的分隔符必须是单个字符。但是,您始终可以自己缓冲结果,检查下一个字符(peek)以查看其是否为换行符。

Delimiter must be a single character for istream::getline. However, you could always buffer the result yourself, checking the next character (peek) to see if its a newline.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文