写一段程序C语言实现读取记事本中特定的文字
时间: 2023-04-02 13:05:10 浏览: 105
c语言实现把文件中数据读取并存到数组中
5星 · 资源好评率100%
#include <stdio.h>
#include <string.h>
int main() {
FILE *fp;
char str[100];
char target[20] = "特定的文字";
fp = fopen("note.txt", "r");
if (fp == NULL) {
printf("无法打开文件\n");
return 1;
}
while (fgets(str, 100, fp) != NULL) {
if (strstr(str, target) != NULL) {
printf("%s", str);
}
}
fclose(fp);
return ;
}
// 请将 "特定的文字" 替换为你要查找的文字。记事本文件名为 "note.txt",请将其放在程序所在的文件夹中。
阅读全文