0

我有一个包含以下行的文件:

25 1 0 0 0 0
27 1 0 0 0 0
20 0 0 0 0 0
32 1 0 0 0 0
23 1 0 0 0 0
16 0 0 0 0 0
28 1 0 0 0 0

首先,我将第二列中 value=1 的每一行存储为字符串数组的元素。我通过 for 循环调用存储的元素,并将元素的内容解析为整数。如何在 C++ 中做到这一点?

#include <vector> 
#include <iostream>
#include <string>
using namespace std;
   .....
   .....
   .....
   .....
char line[100];
vector<string> vec_line;
string Vline;
int trimVal, compa, nil0, nil1, nil2, nil3;
  ......
  ......
  ......
//then store lines as strings in vec_line as required by the premise above
// after that, retrieve the contents of the elements of the vector
for (int iline=0; iline<vec_line.size(); iline++) {
   cout<<"iline  "<<iline<<"  vec_line[iline]";
   //then I want to parse contents of each string element and store them integer formats
   sscanf(vec_line[iline], "%d %d %d %d %d %d", &trimVal, &compa, &nil0, &nil1, &nil2, &nil3); //how would one do this simple parsing task in c and c++?
}

谢谢你。

4

4 回答 4

2

sscanf是一个 C 函数,因为您已经在使用 C++ 流来输出(并且可能从文件中读取?)您最好使用 astringstream在字符串和数据类型之间进行转换。

例如:

#include <iostream>
#include <sstream>
#include <string>
using namespace std;

int main(int argc, char* argv[])
{
   stringstream sstr;
   string mystr = "123";
   int i;

   sstr << mystr;

   sstr >> i;

   cout << i << endl;

   return 0;
}

将输出123到标准输出。当然,如果您愿意,您也可以从ifstream使用>>运算符直接读取到int或。double

希望这可以帮助。

于 2012-08-31T13:07:22.457 回答
1

除非我需要将每一行存储为一个字符串,否则我会做更多这样的事情:

struct row { 
    static const int columns = 6;
    std::vector<int> column_data;

    // should we keep or ignore a row? Ignore if column 1 != 1.
    struct filter {
        bool operator()(row const &r) { return r.column_data[1] != 1; }
    };

    // read in a row.
    friend std::istream &operator>>(std::istream &is, row &r) {
        r.column_data.resize(row::columns);
        for (int i=0; i<row::columns; i++)
            is >> r.columns[i];
        return is;
    }

    // write a row out to a file.
    friend std::ostream &operator<<(std::ostream &os, row const &r) { 
        std::copy(r.column_data.begin(), r.column_data.end(),
                  std::ostream_iterator<int>(os, " "));
        return os;
};

然后读取和显示数据将如下所示:

std::vector<row> data;

std::remove_copy_if(std::istream_iterator<row>(input_file),
                    std::istream_iterator<row>(),
                    std::back_inserter(data),
                    row::filter());

std::copy(data.begin(), data.end(), 
          std::ostream_iterator<row>(output_file, "\n"));

或者,如果您只想将正确的行从某个输入文件复制到某个输出文件,您可以使用正确的迭代器直接执行此操作:

std::remove_copy_if(std::istream_iterator<row>(input_file),
                    std::istream_iterator<row>(),
                    std::ostream_iterator<row>(output_file),
                    row::filter());
于 2012-08-31T13:26:17.630 回答
1

这是不正确的:

sscanf(vec_line[iline], "%d %d ...

因为第一个参数sscanf()是 aconst char*而不是 a std::string。改成:

sscanf(vec_line[iline].c_str(), "%d %d ...

建议检查返回值sscanf()以确保完成所有预期的分配:

if (6 == sscanf(vec_line[iline].c_str(), "%d %d ...
于 2012-08-31T12:56:36.597 回答
0

总是有 lex 和 yacc (或FlexBison

于 2012-08-31T14:16:20.840 回答