3

我想知道是否有任何方法可以使用 fscanf 或 fgets 函数忽略空格。我的文本文件每行有两个字符,可能会或可能不会被空格分隔。我需要读取这两个字符并将每个字符放在不同的数组中。

file = fopen(argv[1], "r");
if ((file = fopen(argv[1], "r")) == NULL) {
    printf("\nError opening file");
}
while (fscanf(file, "%s", str) != EOF) {
    printf("\n%s", str);
    vertexArray[i].label = str[0];
    dirc[i] = str[1];
    i += 1;
}
4

1 回答 1

6

在 fscanf 格式中使用空格 ( " ") 会导致它读取并丢弃输入上的空白,直到找到非空白字符,将输入上的非空白字符作为下一个要读取的字符。因此,您可以执行以下操作:

fscanf(file, " "); // skip whitespace
getc(file);        // get the non-whitespace character
fscanf(file, " "); // skip whitespace
getc(file);        // get the non-whitespace character

或者

fscanf(file, " %c %c", &char1, &char2); // read 2 non-whitespace characters, skipping any whitespace before each
于 2012-11-09T22:27:27.703 回答