How to detect empty lines while reading from istream object in C++?(c++ - 从C++中的istream对象读取时如何检测空行?)
问题描述
如何检测一行是否为空?
How can I detect if a line is empty?
我有:
1
2
3
4
5
我正在用 istream r 阅读这篇文章所以:
I'm reading this with istream r so:
int n;
r >> n
我想知道什么时候到达 4 和 5 之间的空间.我尝试读取为 char 并使用 .peek() 来检测 但这会检测到数字 1 之后的 .上述输入的翻译是: 1 2 3 4 5 如果我是对的...
I want to know when I reach the space between 4 and 5. I tried reading as char and using .peek() to detect but this detects the that goes after number 1 . The translation of the above input is: 1 2 3 4 5 if I'm correct...
因为我要操作整数,所以我宁愿将它们读为整数而不是使用 getline 然后转换为整数...
Since I'm going to manipulate the ints I rather read them as ints than using getline and then converting to int...
推荐答案
它可能看起来像这样:
#include <iostream>
#include <sstream>
using namespace std;
int main()
{
istringstream is("1
2
3
4
5
");
string s;
while (getline(is, s))
{
if (s.empty())
{
cout << "Empty line." << endl;
}
else
{
istringstream tmp(s);
int n;
tmp >> n;
cout << n << ' ';
}
}
cout << "Done." << endl;
return 0;
}
输出:
1 2 3 4 Empty line.
5 Done.
希望这会有所帮助.
这篇关于c++ - 从C++中的istream对象读取时如何检测空行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c++ - 从C++中的istream对象读取时如何检测空行?
基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01