为什么比较两个字符串的结果错过了最后匹配的字符串?

时间:2016-05-04 02:39:35

标签: c++ string csv compare getline

我在csv文件中比较两个字符串。 由于解析csv文件的结果是以逗号分隔数据行。

编码工作正常,但无法显示最后匹配的行。

CSV文件内容:

Title,sn,sn,sn
test,123,344,222
test,123,344,222
test,123,344,222
test,123,344,222
test,456,677,223
test,5,4545,32
apple,23,44,22
apple,323,23,22

例如,我的代码只显示了缺少最后匹配行的内容

Title,sn,sn,sn
test,123,344,222
test,123,344,222
test,123,344,222
test,123,344,222
test,456,677,223

代替,

Title,sn,sn,sn
test,123,344,222
test,123,344,222
test,123,344,222
test,123,344,222
test,456,677,223
test,5,4545,32

代码如下:

int main()
{
    string line;
    ifstream file("sample.csv");

    if(!file)
    {
        cout << "Error, could not open file." << endl;
        return -1;
    }
    while(getline(file, line))
    {
        stringstream ss(line);
        string line2;

        getline(file, line2, ',');

        string str = "test";
        if(line2 == str)
        {
            cout << line << endl;
        }
    }
}

1 个答案:

答案 0 :(得分:0)

每个循环,你得到一条线,然后是它后面的线。当循环到达最后一行时,它后面没有一行,所以与&#34; test&#34;进行比较。从来没有真实,因为你已经在看最后一行了。如果您将第二个getline更改为getline(ss, line2, ',');,那么现在您只需查看每个循环中的一行,因为您从ss而不是文件中拉出每行的第一部分(但是跳过Title,sn,sn,sn的第一行。)要跳过检查第一行(如果该行是标题),您可以在循环之前添加一个getline(file, line);