3

我对 C++ 非常陌生,我一直在试图弄清楚如何将 CSV 文件读入向量。到目前为止一切都很好,除了我不知道如何避免在每条 CSV 记录的末尾换行。

这是我的代码:

#include <fstream>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>

// stream input operator overloaded to read a list of CSV fields
std::istream &operator >> (std::istream &ins, std::vector<std::string> &record)
{
    record.clear();

    // read the entire line into a string
    std::string line;
    std::getline(ins, line);

    // using a stringstream to separate the fields out of the line
    std::stringstream ss(line);
    std::string field;

    while (std::getline(ss, field, ';'))
    {
        // add the converted field to the end of the record
        record.push_back(field);
    }
    return ins;
}

// stream input operator overloaded to read a list of CSV fields
std::istream &operator >> (std::istream &ins, std::vector<std::vector<std::string>> &data)
{
    data.clear();

    // add results from record into data
    std::vector<std::string> record;

    bool empty;
    while (ins >> record)
    {
        // check if line has a price
        for (unsigned i = 0; i < record.size(); i++)
        {
            std::stringstream ss(record[2]);
            int price;
            if (ss >> price)
            {
                empty = true;
            }
            else
            {
                empty = false;
            }
        }

        if (empty == true)
        {
            data.push_back(record);
        }
    }
    return ins;
}

int main()
{
    // bidemensional vector for storing the menu
    std::vector<std::vector<std::string>> data;

    // reading file into data
    std::ifstream infile("test.csv");
    infile >> data;

    // complain if theres an error
    if (!infile.eof())
    {
        std::cout << "File does not excist." << std::endl;
        return 1;
    }
    infile.close();


    for (unsigned m = 0; m < data.size(); m++)
    {
        for (unsigned n = 0; n < data[m].size(); n++)
        {
            std::string recordQry;
            recordQry += "'" + data[m][n] + "', ";

            std::cout << recordQry;
        }
        std::cout << std::endl;
    }
    return 0;
}

test.csv 包含:

CODE;OMSCHRIJVING; PRIJS ;EXTRA;SECTION
A1;Nasi of Bami a la China Garden; 12,00 ;ja;4
A2;Tjap Tjoy a la China Garden; 12,00 ;ja;1
A3;Tja Ka Fu voor twee personen; 22,50 ;ja;1
4

2 回答 2

2

好吧,我打算删除我的答案,但决定重新提交一个,因为不管关于getline你的所有事实都确实知道你遇到了问题。在另一个答案的评论中,我注意到您提到它最初是一个 excel 文件。好吧,至少在某些情况下,微软以\r\n. 这可能是为什么?getline仍然会放弃,\n但你仍然会有回车。如果是这种情况,您将需要使用我之前分享的一种方法。我希望我已经救赎了自己。。

我检查了使用文件写入文件\r\n,是的,它将离开\r. 我在调试中观察了它,甚至当我getline再次使用它来提取它在字符串中留下的值时。当它打印到控制台时,它会打印出光标浮动在第一个字母下方的值。

微软显然使用这种风格来向后兼容需要两个独立功能的旧机器 - 一个将头部返回到左边距,一个用于卷起纸张。这听起来像你正在经历的行为吗?

于 2013-01-09T06:55:47.453 回答
2

尝试:

while (std::getline(ss, field, ';'))
{
    // add the converted field to the end of the record
    record.push_back(field.erase(s.find('\r'));
}
//record.push_back(field.erase(s.find('\r'));
return ins;
于 2013-01-09T08:06:12.123 回答