嘿我试图使用getline
阅读以下几行(15,0,1,#)
(2,11,2,。)
(3,20,0,S)
我希望能够将整数提取为整数,将字符提取为char,但我不知道如何只提取它们。
答案 0 :(得分:3)
您似乎可以读取分隔符,即'('
,')'
和','
,然后只使用格式化的输入。使用操作器的简单模板应该很好地完成这个操作:
#include <iostream>
#include <sstream>
template <char C>
std::istream& read_char(std::istream& in)
{
if ((in >> std::ws).peek() == C) {
in.ignore();
}
else {
in.setstate(std::ios_base::failbit);
}
return in;
}
auto const open_paren = &read_char<'('>;
auto const close_paren = &read_char<')'>;
auto const comma = &read_char<','>;
int main()
{
int x, y, z;
char c;
std::istringstream in("(1, 2, 3, x)\n(4, 5, 6, .)");
if (in >> open_paren >> x
>> comma >> y
>> comma >> z
>> comma >> c
>> close_paren) {
std::cout << "x=" << x << " y=" << y << " z=" << z << " c=" << c << '\n';
}
}
答案 1 :(得分:-1)
比较从getline()的十六进制值获得的值,并运行一些if
语句与ASCII进行比较。这会告诉你是否抓住了数字,字母或符号。