gpt4 book ai didi

c++ - 如何在 C++ 中提取格式化文本?

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

这可能以前出现过,但我不明白如何提取格式化数据。下面是我的代码,用于提取文本文件中字符串“[87]”和“[90]”之间的所有文本。

显然,[87] 和 [90] 的位置与输出中指示的相同。

void ExtractWebContent::filterContent(){
string str, str1;
string positionOfCurrency1 = "[87]";
string positionOfCurrency2 = "[90]";
size_t positionOfText1, positionOfText2;
ifstream reading;
reading.open("file_Currency.txt");
while (!reading.eof()){
getline (reading, str);

positionOfText1 = str.find(positionOfCurrency1);
positionOfText2 = str.find(positionOfCurrency2);
cout << "positionOfCurrency1 " << positionOfText1 << endl;
cout << "positionOfCurrency2 " << positionOfText2 << endl;

//str1= str.substr (positionOfText);
cout << "String" << str1 << endl;
}

reading.close();

货币文件更新:

[79]更多 »由于对欧元区经济的担忧,布伦特原油跌至 102 美元

市场数据

 * Currencies

标题:货币

      Name      Price    Change % Chg
[80]USD/SGD
1.2606 -0.00 -0.13%

USD/SGD [81]USDSGD=X
[82]EUR/SGD
1.5242 0.00 +0.11%

EUR/SGD [83]EURSGD=X

最佳答案

这实际上取决于“提取数据意味着什么”。在简单的情况下,您可以阅读 file into a string然后使用 string成员函数(尤其是 findsubstr)来提取您感兴趣的段。如果您对每行数据感兴趣 getline是进行线提取的方法。像以前一样应用 findsubstr 来获取段。

有时一个简单的查找不会让你走得太远,你需要一个regular expression轻松找到您感兴趣的部分。

通常,简单的解析器会不断发展并很快超越正则表达式。这通常标志着 C++ 解析的巨大锤子的时间 Boost.Spirit .

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

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