1

我有一个程序从文本文件中读取整数并跳过非整数和奇怪的符号。然后文本文件看起来像:

# Matrix A   // this line should be skipped because it contains # symbol
1 1 2
1 1$ 2.1      // this line should be skipped because it contains 2.1 and $
3 4 5

我必须打印出没有奇怪符号和非整数行的矩阵。那就是输出应该是:

1 1 2
3 4 5

我的代码

ifstream matrixAFile("a.txt", ios::in); // open file a.txt
if (!matrixAFile)
{
      cerr << "Error: File could not be opened !!!" << endl;
      exit(1);
}

int i, j, k;
while (matrixAFile >> i >> j >> k)
{
      cout << i << ' ' << j << ' ' << k;
      cout << endl;
}

但是当它获得第一个 # 符号时它会失败。有人帮忙吗?

4

5 回答 5

1

如果您设置为每行三个整数,我建议这种模式:

#include <fstream>
#include <sstream>
#include <string>

std::ifstream infile("matrix.txt");

for (std::string line; std::getline(infile, line); )
{
    int a, b, c;

    if (!(std::istringstream(line) >> a >> b >> c))
    {
        std::cerr << "Skipping unparsable line '" << line << "'\n";
        continue;
    }

    std::cout << a << ' ' << b << ' ' << c << std::endl;
}

如果每行的数字数量是可变的,您可以使用这样的跳过条件:

line.find_first_not_of(" 0123456789") != std::string::npos
于 2012-09-02T23:22:24.497 回答
1

您的问题出在此代码上。

int i, j, k;
while (matrixAFile >> i >> j >> k)

分配“找出该行是否包含整数

但是您的代码“我已经知道该行包含整数”

于 2012-09-02T23:10:21.937 回答
0

由于这是一项任务,我没有给出完整的答案。

Read the data line by line to a string(call it str),
Split str into substrings,
In each substring, check if it's convertible to integer value.

另一个技巧是读取一行,然后检查每个字符是否在 0-9 之间。如果您不需要考虑负数,它会起作用。

于 2012-09-02T23:06:53.143 回答
0

当然,这在#字符处失败: The #is not an integer,因此,将其作为整数读取失败。你可以做的是尝试读取三个整数。如果这失败并且您还没有达到 EOF(即matrixAFile.eof()yield false,您可以clear()使用错误标志,并且ignore()所有内容都可以换行。错误恢复看起来像这样:

matrixAFile.clear();
matrixAFile.ignore(std::numeric_limits<std::streamsize>::max(), '\n');

请注意,如果您失败了,您需要退出,因为eof()is true.

于 2012-09-02T23:11:15.853 回答
0

我想我一次只读一行作为字符串。只要字符串仅包含数字、空格和 (可能) ,我就会将其复制到输出中-

于 2012-09-03T00:09:14.037 回答