gpt4 book ai didi

C++使用分隔符逐行读取文件并将数据存储到变量中

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:19:50 25 4
gpt4 key购买 nike

我是 C++ 的新手,我有一个 txt 文件,其中包含如下所示的数据:

test:123:lock

qwerty:4321:unlock

asdf:12:lock

我是否可以使用“:”作为分隔符将数据逐行读取到变量/数组中?

我试过做类似的事情:

while(!myfile.eof()) {       
for (int i = 0; i < 3; i++) {
getline(myfile,UserN[i],':');
}
}

我要实现的是将第一行的数据存入UserN[0]UserN[1]UserN[2 ]。当它开始读取第二行时,第二行的数据将替换UserN[0]UserN[1]UserN[中的值2]。提前致谢!

最佳答案

首先读取该行,然后使用 std::stringstream 对其进行标记化:

#include <sstream>

...

std::string line;

while(std::getline(myfile, line)) { // cache the line
std::istringstream tokenizer(line);

std::getline(tokenizer, UserN[0], ':'); // then get the tokens from it
std::getline(tokenizer, UserN[1], ':');
std::getline(tokenizer, UserN[2]); // last token: get the remainder
// of the line.

if(tokenizer) {
// success!
} else {
// There were fewer than two colons in the line
}
}

本质上,std::istringstream 将字符串包装在流接口(interface)中——生成的流的行为(大致)类似于一个文件,其内容与构建它的字符串相同。然后可以使用 >>>getline 或您可以在文件或 std::cin 或其他输入流上使用的任何其他内容它,在这里我们使用它将字符串分解为您需要的标记。

关于C++使用分隔符逐行读取文件并将数据存储到变量中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28025257/

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