给这个程序段添加详细中文注释:void search_file(FILE *fp, char *fname) { // 获取用户输入的文件名 printf("\t请输入插入的文件名:\n\t"); // 从标准输入中获取文件名 fgets(fname, MAX_LEN, stdin); // 查找'\n'字符并替换为'\0' char *pos1 = NULL; if ((pos1 = strchr(fname, '\n')) != NULL) *pos1 = '\0'; // 添加后缀名".txt",如果没有输入 if (!strstr(fname, ".txt")) strcat(fname, ".txt"); // 打开文件并判断是否打开成功 if ((fp = fopen(fname, "r+")) == NULL) { // 打开文件方式改为"r+",即可读可写 printf("\t不能打开文件!\n"); exit(0); } char ch, t, m; char test[1000]; int i = 0, a = 0, x = 0, fc = 0; char *p; //读取文件内容 do { ch = fgetc(fp); putchar(ch); test[i] = ch; i++; } while (ch != EOF); test[i] = '\0'; //串尾标识符 fclose(fp); p = test; //开始查找字符 do { a = 0, x = 0; printf("\n请输入需要查找的字符:"); scanf("%c", &t); getchar(); while (x < i) { if (t == *(p + x)) { printf("\n所要查找的字符为:%c,它是第 %d个\n", t, x + 1); a = 1; } x++; } if (a == 0) printf("\n对不起,您所查找的字符不存在!\n"); printf("\n是否继续查找?(任意键继续/0退出)\n"); scanf("%c", &m); if (m == '0') fc = 1; } while (!fc); }
时间: 2024-03-26 08:36:31 浏览: 133
Linux基本命令应用
/**
* @brief 从文件中查找指定字符
* @param fp 文件指针
* @param fname 文件名
*/
void search_file(FILE *fp, char *fname) {
// 获取用户输入的文件名
printf("\t请输入插入的文件名:\n\t");
// 从标准输入中获取文件名
fgets(fname, MAX_LEN, stdin);
// 查找'\n'字符并替换为'\0'
char *pos1 = NULL;
if ((pos1 = strchr(fname, '\n')) != NULL) *pos1 = '\0';
// 添加后缀名".txt",如果没有输入
if (!strstr(fname, ".txt")) strcat(fname, ".txt");
// 打开文件并判断是否打开成功
if ((fp = fopen(fname, "r+")) == NULL) { // 打开文件方式改为"r+",即可读可写
printf("\t不能打开文件!\n");
exit(0);
}
char ch, t, m;
char test[1000];
int i = 0, a = 0, x = 0, fc = 0;
char *p;
// 读取文件内容
do {
ch = fgetc(fp);
putchar(ch);
test[i] = ch;
i++;
} while (ch != EOF);
test[i] = '\0'; // 串尾标识符
fclose(fp);
p = test; // 开始查找字符
do {
a = 0, x = 0;
printf("\n请输入需要查找的字符:");
scanf("%c", &t);
getchar();
// 遍历文件内容,查找指定字符
while (x < i) {
if (t == *(p + x)) {
printf("\n所要查找的字符为:%c,它是第 %d 个\n", t, x + 1);
a = 1;
}
x++;
}
if (a == 0) printf("\n对不起,您所查找的字符不存在!\n");
printf("\n是否继续查找?(任意键继续/0退出)\n");
scanf("%c", &m);
if (m == '0') fc = 1;
} while (!fc);
}
阅读全文