5

我需要逐行搜索文件中的两个特定单词,如果它们存在,则打印“找到!”。

这是 file.txt(有四列)

bill gates 62bill microsoft 
beyonce knowles 300mill entertainment 
my name -$9000 student

以下是我的想法,但它似乎不起作用

char firstname[];
char lastname[];
char string_0[256];

file = fopen("file.txt","r+");

while((fgets(string_0,256,file)) != NULL) {

  //scans the line then sets 1st and 2nd word to those variables
  fscanf(file,"%s %s",&firstname, &lastname);

  if(strcmp(firstname,"beyonce")==0 && strcmp(lastname,"knowles")==0){
    printf("A match has been found");
  }
}

fclose(file);

请帮忙。可能是指针没有移动到while循环中的下一行吗?如果是这样,我该如何解决?

4

2 回答 2

4

而不是在你已经用 读取它之后调用fscanffilefgets你应该调用你在调用中将数据复制到sscanf的变量。string_0fgets

于 2012-04-20T03:19:43.740 回答
4

一种方法是使用该fget函数并在文本中查找子字符串。尝试这样的事情:

int main(int argc, char **argv)
{
    FILE *fp=fopen(argv[1],"r");
    char tmp[256]={0x0};
    while(fp && fget(tmp, sizeof(tmp), fp))
    {
        if (strstr(tmp, "word1"))
            printf("%s", tmp);
        else if (strstr(tmp, "word2"))
            printf("%s", tmp);
    }
    if(fp) fclose(fp);
    return 0;
}
于 2012-04-20T03:20:50.100 回答