gpt4 book ai didi

c++ - 如何只读取文件.txt 中的数字?

转载 作者:行者123 更新时间:2023-11-28 05:34:18 24 4
gpt4 key购买 nike

我只需要从文件中读取数字。该文件包含:

0
#####################
# | | | #
# | | | 2#
# | | 2| #
# | | | #
#####################

我只想读取第一个 0 作为分数和其他两个数字。空格我想将它们保存为 0。我想将分数保存到一个 int 中,其余的保存到一个 vector 中。

所以 vector 应该包含:

score = 0
0000000200200000

我的代码是下一个,但它不起作用:

string line;
vector<int> v;
int sscore = 0, count = 0;
ifstream in ("save_game.txt");
vector<vector<Tile> > vt;

if (in.is_open()) {

while (getline (in, line)) {
if (line.size() == 1)
sscore = str2int(line);
else {
for (int i = 0; i < (int) line.size(); i++) {
string l = line.substr(i, 1);
char c = l[0];
if (l[0] == '#' || l[0] == '|') {count = 0;}
else {
if (c != ' ') {
count = 0;
int ss = str2int(l);
v.push_back(ss);
}
else {
count++;
if (count == 3)
v.push_back(0);
}
}
}
}
}

in.close();
}

这里是 str2int 函数

int str2int(string s){
istringstream reader(s);
unsigned int val = 0;
reader >> val;
return val;
}

非常感谢。

最佳答案

我会在这里只使用简单的流提取操作(实际上,可能是 boost::regex_split),没有 std::string 解析。

  • operator>>读取第一个0,然后用std::ignore去除尾随的换行符,或者std::getline 并检查是否不存在额外的(非空白)字符

  • std::ignorestd::getline 并验证 #### 行。

  • 使用 operator>>char 并验证它是 #

  • 在一个循环中,尝试operator>>int默认为0,如果失败,则。 clear() 并使用 operator>>char 读取似乎不是数字的内容,但 |#。照此循环。

  • 处理第二个 # 之后的行的其余部分,类似于第一个要点


始终检查每个提取操作是否成功。

关于c++ - 如何只读取文件.txt 中的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38683694/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com