从没有空格的文本文件中读取数字

时间:2011-09-03 06:51:51

标签: c++ file-io io g++ while-loop

我正在尝试从文本文件中读取12位数字到数组。如果我在每个数字之间放置空格,我就能成功地做到这一点。例如:

1 1 1 1 1 1 1 1 1 1 1 1 

但是当我删除数字之间的空格时,我的程序不再能够从文本文件中分配数组。例如:

111111111111

我确信答案很简单,但我无法在任何地方找到解决方案。下面是我用来分配数组的while循环。

void int_class::allocate_array(std::ifstream& in, const char* file)
{
    //open file
    in.open(file);

    //read file in to array
    int i = 0;
    while( !in.eof())
    {
        in >> myarray[i];
        i++;
    }

    in.close();
}

1 个答案:

答案 0 :(得分:3)

要读取字符数组,假设没有空格或其他分隔符,您可以立即从输入流中读取整个字符:

in >> myarray;

要创建整数数组,可以通过char读取输入char并填充数组:

char c;
int i = 0;
while( !in.eof())
{
   in >> c;
   myarray[ i++ ] = c - '0';
}

在这种情况下,任何地方都可能有任何数量的空格,它们将被忽略。