在 C 中单独扫描句子和数字

Separately scanning a sentence and number(s) in C

提问人:Tan En De 提问时间:11/19/2017 最后编辑:Digvijaysinh GohilTan En De 更新时间:11/19/2017 访问量:61

问:

假设我有一个文本文件(hw.dat),其中列出了数据(姓名,身高(cm),体重(kg)):

Yuri            164     80 
Lai San Young   155     60
John Wayne      180     93

名单还在继续。

我想以这种格式扫描并打印所有数据:

name: Yuri, height: 164, weight: 80
name: Lai San Young, height: 155, weight: 60

等等。

这是我失败的尝试(代码段)。我打算编写代码,逐行读取 hw.dat 文件,同时逐行打印数据:

double h, w;
char name[100];

FILE *fr;
fr = fopen ("hw.dat", "r");

while (fscanf(fr,"%[^\n]s %lf %lf", name, &h, &w)!=EOF)
{
    printf ("name: %s, height: %lf, weight: %lf \n", name, h, w);
}

fclose (fr);

%[^\n]s “吃掉”了整条线。我也不能使用 %s,因为名称的字数不同。所以,我想知道是否有任何东西可以分开扫描......或者有没有更好的方法来解决这个问题......

谢谢。

C file-IO 扫描 EOF 逐行

评论

0赞 Some programmer dude 11/19/2017
阅读整行,然后找到最后两个空格(将名称与数字分开的空格,并将两个数字分开)。提取两个数字并解析它们,你就剩下这个名字了(可能有一些可以修剪的尾随空格)。
0赞 Jabberwocky 11/19/2017
自己使用和解析字符串。fgets
0赞 Sudheesh Singanamalla 11/19/2017
%[^\n]*c %lf %lf?

答:

0赞 Ed Heal 11/19/2017 #1

尝试

fscanf(fr,"%99[^0-9]%lf%lf ", name, &h, &w)!=EOF)

这将吃掉行首的名称,然后是数字,然后是新行。

您必须修剪名称以删除末尾的空格。如何以标准方式修剪前导/尾随空格?应该对你有帮助

评论

0赞 Ed Heal 11/19/2017
我应该把!=EOF -> ==3
0赞 David C. Rankin 11/19/2017 #2

解决该问题的另一种标准方法是简单地使用设置在行尾的指针,然后备份 - 修剪空格(和nul终止),直到找到字母或数字 - 然后备份,直到找到下一个空格。由于您的指针现在指向之前的最后一个 whitepace,只需保存一个指针,该指针将指向 (再次重复weightcurrent + 1weightheight)

您现在已经保存了一个指针,并且您的指针现在指向 之前的最后一个空格。只需继续备份空格(在你走的时候终止),直到你到达下一个字母或数字(这将是名字的结尾)或者你点击了字符串的开头(出了点问题,你没有找到“姓名、身高、体重”)。heightheight

由于到目前为止您一直在进行 nul 终止,因此您知道您现在读取的缓冲区仅包含 ,因此您可以简单地打印输出并读取下一行。绝对没有什么是你不能简单地通过沿着字符串(或向上移动一个字符串)来解析的name

总而言之,您可以执行类似于以下操作的操作:

#include <stdio.h>
#include <ctype.h>

enum { MAXHW = 2, MAXC = 512 };  /* if you need constants, define them */

int main (int argc, char **argv) {

    char buf[MAXC] = "";    /* line buffer */
    FILE *fp = argc > 1 ? fopen (argv[1], "r") : stdin;

    if (!fp) {  /* validate file open for reading */
        fprintf (stderr, "error: file open failed '%s'.\n", argv[1]);
        return 1;
    }

    while (fgets (buf, MAXC, fp)) { /* read each line */
        char *p = buf,              /* pointer to buf */
             *hw[MAXHW] = {NULL};   /* array of MAXHW pointers */
        int ndx = 0;                /* array index */

        while (*p) p++;             /* find end of buf */
        p--;                        /* backup to last char */

        while (p > buf) {   /* while pointer within buf */
            /* loop checking if char is a trailing space, tab, newline, ... */
            while (p > buf && isspace (*p))
                *p-- = 0;   /* overwrite with nul-terminating char */
            /* loop checking each char is a letter or digit */
            while (p > buf && isalnum (*p))
                p--;        /* just backup to previous char */
            hw[ndx++] = p + 1;  /* space before word found, save ptr to word */
            if (p != buf)   /* if not at beginning */
                *p = 0;     /* nul-terminate */
            else
                break;          /* at beginning - bail */
            if (ndx == MAXHW)   /* if both h & w filled */
                break;          /* bail */
            p--;    /* backup to previous and keep going */
        }
        if (p > buf && ndx == MAXHW) { /* not at beginning & H & W found */
            p--;    /* backup to previous */
            /* trim trailing whitespace to end of name */
            while (p > buf && isspace (*p))
                *p-- = 0;
        }
        /* output results */
        printf ("name: %s, height: %s, weight: %s\n", buf, hw[1], hw[0]);
    }
    if (fp != stdin) fclose (fp);   /* close file if not stdin */

    return 0;
}

示例使用/输出

$ ./bin/readhw <dat/hw.dat
name: Yuri, height: 164, weight: 80
name: Lai San Young, height: 155, weight: 60
name: John Wayne, height: 180, weight: 93

有很多很多不同的方法可以做到这一点。您可能没有使用和检查,例如 使用显式检查空格来代替 等。您可以使用在字符串中向前扫描第一个数字,并从那里向前和向后工作。不管你怎么做,关键是把你的字符串写在一张纸上,然后用铅笔前后移动你的指针位置,同时弄清楚你需要的测试和索引。ctype.hif (p > buf && (*p == ' ' || *p == '\t' || *p == '\r' || *p == '\n')isspace()strpbrk

查看内容,如果您还有其他问题,请告诉我。