我需要制作一个“搜索和替换”程序。它不必在输入文件中进行更改,只能在屏幕上进行更改。
示例:
file: foo pap ran bar foo. Nam foo!
replace: foo >with> bar
output to screen: bar pap ran bar bar. Nam bar!`
有没有人有一些想法我怎么能这样做?我是C的新手。
答案 0 :(得分:1)
首先编写一个读取一行文本的程序(通过假设该行不超过1000个字符使其变得容易)并将其写回。
一旦你有了这个工作,在行内寻找一个文本字符串(例如“foo”),并用相似数量的易于看到的字符替换它(例如用XXX替换foo)。
然后从他们那里拿走。
答案 1 :(得分:1)
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
long GetFileSize(FILE *fp){
long fsize = 0;
fseek(fp,0,SEEK_END);
fsize = ftell(fp);
fseek(fp,0,SEEK_SET);//reset stream position!!
return fsize;
}
int main(int argc, char **argv){
char *file, *sword, *rword, *buff, *wp,*bp;
int len;
long fsize;
FILE *inpFile;
if(argc != 4){
fprintf(stderr, "Usage:rep filePath originalWord replaceWord\n");
exit(EXIT_FAILURE);
}
file = argv[1];
sword = argv[2];
rword = argv[3];
if(NULL==(inpFile=fopen(file, "rb"))){
perror("Can't open file");
exit(EXIT_FAILURE);
}
fsize = GetFileSize(inpFile);
buff=(char*)malloc(sizeof(char)*fsize+1);
fread(buff, sizeof(char), fsize, inpFile);//file all read into buff
fclose(inpFile);
buff[fsize]='\0';
bp=buff;
len = strlen(sword);
while(NULL!=(wp=strstr(bp, sword))){
while(bp != wp)
putchar(*bp++);
printf("%s",rword);
bp+=len;
}
if(bp) printf("%s", bp);
free(buff);
return 0;
}