gpt4 book ai didi

c++ - 如何在 C++ 中读取格式化数据?

转载 作者:IT老高 更新时间:2023-10-28 22:34:10 27 4
gpt4 key购买 nike

我的数据格式如下:

Words          5AnotherWord    4SomeWord       6

它在一个文本文件中,我正在使用 ifstream 来读取它,但是如何将数字和单词分开?单词只会由字母组成,单词和数字之间会有一定的空格或制表符,不知道有多少。

最佳答案

假设“单词”中没有任何空格(那么它实际上不会是 1 个单词),以下是如何读取文件末尾的示例:

std::ifstream file("file.txt");
std::string str;
int i;

while(file >> str >> i)
std::cout << str << ' ' << i << std::endl;

关于c++ - 如何在 C++ 中读取格式化数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3555715/

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