我尝试使用上述格式的输入读取文本文件。我能用这段代码读取每一行:
FILE *file = fopen(argv[1], "r");
...
char * line = NULL;
size_t len = 0;
ssize_t read;
while ((read = getline(&line, &len, file)) != -1)
这样“line”等于文件中的每一行,如果我输出ex为ex读取的内容:i得到第一个输出为“1 2 3 4 5 6 7 8 9”。如何将这些数字存储到二维阵列?我怎样才能在每个空间分开并获得数字?
答案 0 :(得分:0)
字符串是一个数组,因此您只想将字符串的内容逐字符复制到另一个数组,除非该字符不是字母数字。 您可以先进行一些检查,查看当前字符串中有多少个字母数字字符,然后为新数组获取该内存量。
答案 1 :(得分:0)
使用sscanf
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char *argv[]) {
int numbers[9][9];
FILE *file = fopen(argv[1], "r");
char * line = NULL;
size_t len = 0;
ssize_t read;
int rows = 0;
while ((read = getline(&line, &len, file)) != -1){
int *a = numbers[rows];
if(9 != sscanf(line, "%d%d%d%d%d%d%d%d%d", a, a+1, a+2,a+3,a+4,a+5,a+6,a+7,a+8)){
fprintf(stderr, "%s invalid format at input file\n", line);
return EXIT_FAILURE;
}
if(++rows == 9)
break;
}
fclose(file);
free(line);
//check print
for(int r = 0; r < 9; ++r){
for(int c = 0; c < 9; ++c)
printf("%d ", numbers[r][c]);
puts("");
}
}