我需要制作一个“搜索和替换”程序。它不必在输入文件中进行更改,而只需对屏幕进行更改。
例子:
file: foo pap ran bar foo. Nam foo!
replace: foo >with> bar
output to screen: bar pap ran bar bar. Nam bar!`
有谁知道我该怎么做?我是C的新手。
我需要制作一个“搜索和替换”程序。它不必在输入文件中进行更改,而只需对屏幕进行更改。
例子:
file: foo pap ran bar foo. Nam foo!
replace: foo >with> bar
output to screen: bar pap ran bar bar. Nam bar!`
有谁知道我该怎么做?我是C的新手。
首先编写一个程序,该程序读取一行文本(假设该行剩余的字符数超过 1000 个字符,这很容易)并将其写回。
一旦你有这个工作,在该行中寻找一个文本字符串(例如“foo”),并用相似数量的容易看到的字符替换它(例如用XXX替换foo)。
然后从他们那里拿走。
#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;
}