如何用逗号分隔从文件中读取的字符串,然后将其保存在数组中

时间:2013-06-05 13:58:26

标签: c++ arrays codeblocks string-split

这是我创建的文本文件

NameOfProduct,价钱,可用性。

石油,$ 20,是
涂料,$ 25,是
CarWax,$ 35,没有
制动液,$ 50,是

我想逐行从文件中读取这些数据,然后将其拆分为逗号(,)符号并将其保存在字符串数组中。

string findProduct(string nameOfProduct)
 {
   string STRING;
   ifstream infile;
   string jobcharge[10];
   infile.open ("partsaval.txt");  //open the file

int x = 0;
    while(!infile.eof()) // To get you all the lines.
    {
       getline(infile,STRING); // Saves the line in STRING.
       stringstream ss(STRING);

        std::string token;

        while(std::getline(ss, token, ','))
        {
             //std::cout << token << '\n';
        }

    }
infile.close(); // closing the file for safe handeling if another process wantst to use this file it is avaliable

for(int a= 0 ;  a < 10 ; a+=3 )
{
    cout << jobcharge[a] << endl;
}

}

问题:

当我删除打印令牌行上的注释时,所有数据都被完美打印,但是当我尝试打印数组的内容(jobcharge [])时,它不会打印任何内容。

2 个答案:

答案 0 :(得分:1)

你不能保存数组中的行,它每个单元格只能包含一个字符串而你想放3,你也忘了在数组中添加元素:

您需要一个2D数组:

string jobcharge[10][3];
int x = 0;
while(!infile.eof()) // To get you all the lines.
{
  getline(infile,STRING); // Saves the line in STRING.
  stringstream ss(STRING);

  std::string token;
  int y = 0;
  while(std::getline(ss, token, ','))
  {
    std::cout << token << '\n';
    jobcharge[x][y] = token;
    y++;
  }
  x++;
}

然后你可以像这样打印数组:

for(int a= 0 ;  a < 10 ; a++ )
{
    for(int b= 0 ;  b < 3 ; b++ )
    {
        cout << jobcharge[a][b] << endl;
    }
}

请记住,如果每行有超过10行或超过3个项目,此代码将完全失败。你应该检查循环内的值。

答案 1 :(得分:0)

你可以fscanf()而不是

char name[100];
char price[16];
char yesno[4];

while (fscanf(" %99[^,] , %15[^,] , %3[^,]", name, price, yesno)==3) {
     ....
}