如果您有一个包含已知结构文本的文件,您将如何提取某个识别词前面的值?具体来说,如何从下面的文本中提取值。
CDM-nucleon micrOMEGAs amplitudes:
proton: SI -3.443E-10
这是我使用脚本的程度:
#include <string>
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
string identifier;
double value;
ifstream file("output.txt");
// Commands to extract value
file.close();
return 0;
}
非常感谢。