gpt4 book ai didi

c++ - 如何在 c/c++ 中解析字符串?

转载 作者:太空宇宙 更新时间:2023-11-04 06:38:06 24 4
gpt4 key购买 nike

我有一个包含以下行的文件:

25 1 0 0 0 0
27 1 0 0 0 0
20 0 0 0 0 0
32 1 0 0 0 0
23 1 0 0 0 0
16 0 0 0 0 0
28 1 0 0 0 0

首先,我将第二列中值为 1 的每一行存储为字符串数组的元素。我通过 for 循环调用存储的元素,并将元素的内容解析为整数。如何在 C++ 中做到这一点?

#include <vector> 
#include <iostream>
#include <string>
using namespace std;
.....
.....
.....
.....
char line[100];
vector<string> vec_line;
string Vline;
int trimVal, compa, nil0, nil1, nil2, nil3;
......
......
......
//then store lines as strings in vec_line as required by the premise above
// after that, retrieve the contents of the elements of the vector
for (int iline=0; iline<vec_line.size(); iline++) {
cout<<"iline "<<iline<<" vec_line[iline]";
//then I want to parse contents of each string element and store them integer formats
sscanf(vec_line[iline], "%d %d %d %d %d %d", &trimVal, &compa, &nil0, &nil1, &nil2, &nil3); //how would one do this simple parsing task in c and c++?
}

谢谢。

最佳答案

sscanf 是一个 C 函数,因为您已经在使用 C++ 流来输出(并且大概是从文件中读取?)您最好使用 stringstream 进行转换介于字符串和数据类型之间。

例如:

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

int main(int argc, char* argv[])
{
stringstream sstr;
string mystr = "123";
int i;

sstr << mystr;

sstr >> i;

cout << i << endl;

return 0;
}

将输出 123 到标准输出。当然,您也可以使用 >>> 运算符直接从 ifstream 读取到 intdouble,如果您愿望。

希望这对您有所帮助。

关于c++ - 如何在 c/c++ 中解析字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12215800/

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