如何从txt文件读取数据并将其拆分? C ++

时间:2019-04-09 18:31:38

标签: c++

文本文件:

a1 |人A | ABC | 12345678 | K.T 1号楼A室
a2 |人B | ABC | 123456 | H,K,K,2号楼H室|成员

ifstream file _(“ user.txt”);

if (file_.is_open())
{
    string line;
    string id;
    string name;
    string section;
    string password_s;
    string address;
    string rank;

    string line;

    while (getline(file_,line))
    {
        //split the text data

    }
    file_.close();
}
else {
    cout << "file is not open" << endl;
}

0 个答案:

没有答案