在C中用空格和分隔符读取多行字符串

时间:2015-05-28 01:31:04

标签: c

如何读取C中文件的多行数据,其中每行都有分隔符以分隔该行的不同数据?

例如,我有一个包含以下文本的文件:

Some Text | More Text | 1:23
Text Again | Even More Text | 4:56
etc...

这是我尝试过的,但到目前为止它对我没用:

char str1[20];
char str2[20];
int mins;
int secs;
char line[50];
while (fgets(line, 50, textFile) != 0) {
    sscanf(line, "%20[ | ]%20[ | ]%d[:]%d", str1, str2, &mins, &secs)
}

你可能从我的代码中猜到我是C的新手,我感谢任何帮助。

1 个答案:

答案 0 :(得分:5)

替换

sscanf(line, "%20[ | ]%20[ | ]%d[:]%d", str1, str2, &mins, &secs)

sscanf(line, "%19[^|] | %19[^|] | %d:%d", str1, str2, &mins, &secs);
trim_end(str1);//remove the trailing white spaces
trim_end(str2);
#include <string.h>
#include <ctype.h>

void trim_end(char *s){
    size_t len = strlen(s);
    while(len--){
        if(isspace(s[len]))
            s[len] = 0;
        else
            break;
    }
}