gpt4 book ai didi

c++ - 从 Getline 解析空格分隔的数字

转载 作者:行者123 更新时间:2023-11-30 04:28:28 25 4
gpt4 key购买 nike

我正在编写一个小程序,它将读取包含 3 行 5 条记录的纯 ASCII 文本文件,如下所示:

f_name l_name
ID#
int int int int

我成功地将前两行放入了它们所属的一维数组中,但是我无法将整数系列放入二维数组中。我最接近解决方案的方法是使用以下行:

studentScores[row][col] = atoi(input.c_str());

但是,atoi 只解析第一个数字,然后丢弃该行的其余部分。我需要将字符串中的每个数字放在数组的单独元素中。我尝试使用 stringstream,但无法正常工作;显然,我想使用的函数包含在与我正在使用的不同版本的 stringstream 中。

我可以用什么来解析这个字符串?

最佳答案

#include <string>
#include <sstream>

// ...

int ints[4];
std::string input;
std::getline(stream, input);
std::istringstream(input) >> ints[0] >> ints[1] >> ints[2] >> ints[3];

(为简洁起见省略了错误处理。)

关于c++ - 从 Getline 解析空格分隔的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10130432/

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