我需要一些帮助来获取 C++ 的代码,
情况是,我需要读取一个包含以下内容的文本文件:
//THIS LINE IS COMMENTED OUT
//THIS LINE TOO
Variable1 = "1"; //comment for this line
Address = "some text value here"; //comment for this line
所以现在我想使用 c++ 读取这个文本文件并将值检索为:
Variable1 = 1
Address = some text value here
那么我该如何完成这项工作,请需要您的专家帮助。我只设法使用下面的代码跳过文本文件的注释行,但现在不知道如何读取变量。我是 C++ 新手
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;
ifstream myfile ("text.txt");
if (myfile.is_open())
{
while ( myfile.good() )
{
getline (myfile,line);
if(line[0]=='/')
continue;
cout << line << endl;
}
myfile.close();
}
else cout << "Unable to open file";
return 0;
}