如何通过跳过=来从文本文件中读取整数?

时间:2012-05-17 21:02:22

标签: c++ file-io integer string-parsing

1 = 0 0 97 218
2 = 588 0 97 218
3 = 196 438 97 218
4 = 0 657 97 218
5 = 294 438 97 218

我有如上所述的txt文件。如何在不使用=?

的情况下从该文件中读取整数

2 个答案:

答案 0 :(得分:1)

另一种可能性是将=分类为空格的方面:

class my_ctype : public std::ctype<char>
{
    mask my_table[table_size];
public:
    my_ctype(size_t refs = 0)  
        : std::ctype<char>(&my_table[0], false, refs)
    {
        std::copy_n(classic_table(), table_size, my_table);
        my_table['='] = (mask)space;
    }
};

然后使用包含此方面的区域设置填充您的信息流,然后读取数字,就像=根本不存在一样:

int main() {
    std::istringstream input(
            "1 = 0 0 97 218\n"
            "2 = 588 0 97 218\n"
            "3 = 196 438 97 218\n"
            "4 = 0 657 97 218\n"
            "5 = 294 438 97 218\n"
        );

    std::locale x(std::locale::classic(), new my_ctype);
    input.imbue(x);

    std::vector<int> numbers((std::istream_iterator<int>(input)),
        std::istream_iterator<int>());

    std::cout << "the numbers add up to: " 
              << std::accumulate(numbers.begin(), numbers.end(), 0) 
              << "\n";
    return 0;
}

当然,将所有数字加起来可能不是很明智,因为每行上的第一个似乎是一个行号 - 这只是一个快速演示,表明我们是真正阅读数字而没有引起任何问题的额外“东西”。

答案 1 :(得分:0)

这是基本框架:逐行阅读和解析。

for (std::string line; std::getline(std::cin, line); )
{
     std::istringstream iss(line);
     int n;
     char c;

     if (!(iss >> n >> c) || c != '=')
     {
         // parsing error, skipping line
         continue;
     }

     for (int i; iss >> i; )
     {
         std::cout << n << " = " << i << std::endl; // or whatever;
     }
}

要通过std::cin阅读文件,请将其传输到您的计划中,例如./myprog < thefile.txt