C语言中字符串的查找与替换
设计内容和要求(包括原始数据、技术参数、条件、设计要求等):设计内容:打开一篇英文文章,在该文章中找出所有给定的单词,然后对所有给定的单词替换为另外一个单词,再存盘。设计...
设计内容和要求(包括原始数据、技术参数、条件、设计要求等):
设计内容:
打开一篇英文文章,在该文章中找出所有给定的单词,然后对所有给定的单词替换为另外一个单词,再存盘。
设计要求:
(1) 符合课题要求,实现相应功能;
(2) 操作方便易行;
(3) 注意程序的实用性、安全性;
在网上看了很多相关的程序,但是不可用,希望那位高手给出全部过程!将仅有的刚刚得到的20分财富 奉献出来!! 展开
设计内容:
打开一篇英文文章,在该文章中找出所有给定的单词,然后对所有给定的单词替换为另外一个单词,再存盘。
设计要求:
(1) 符合课题要求,实现相应功能;
(2) 操作方便易行;
(3) 注意程序的实用性、安全性;
在网上看了很多相关的程序,但是不可用,希望那位高手给出全部过程!将仅有的刚刚得到的20分财富 奉献出来!! 展开
展开全部
#include <stdio.h>
#include <stdlib.h>
#define SIZE 20 /* 查找单词字符和输入替换单词少于20 */
#define MAXLEN 10000 /* 文章字符不大于10000 */
void main(void)
{
int i, j;
int flag; /* 用于标记匹配单词 */
int countFlag; /* 用于检查匹配计数 */
int countOne = 0; /* 记录未改文章字符个数 */
int countTwo = 0; /* 记录改后文章字符个数 */
char keyWords[SIZE]; /* 查找单词 */
char copyWords[SIZE];/* 替换单词 */
char strOne[MAXLEN]; /* 将未改文章的所有字符储存在里面 */
char strTwo[MAXLEN]; /* 将改后文章的所有字符储存在里面 */
FILE *fp;
printf("请输入要查找的单词: ");
gets(keyWords);
printf("请输入要替换的单词: ");
gets(copyWords);
if (NULL == (fp = fopen("Englishnet.txt", "rw")))/* 读文件 */
{
printf("文件打开失败!\n");
exit(1);
}
while (!feof(fp))/* 读文件 */
{
strOne[countOne++] = fgetc(fp);
}
countOne--;/* 减去最后一个文件结束字符 */
for (i=0; i<countOne; i++)
{
if (keyWords[0] == strOne[i])/* 判断查找单词第一个字符是否匹配 */
{
if ((' ' == strOne[i-1]) || ('\n' == strOne[i-1]) || (0 == i))/* 1.检查单词前的一个字符 */
{
flag = 1;
countFlag = i + 1;
for (j=1; keyWords[j]!='\0'; j++)
{
if (keyWords[j] != strOne[countFlag++])/* 是否匹配 */
{
flag = 0;
break;
}
}
if ((' ' == strOne[countFlag]) ||
('\n' == strOne[countFlag]) ||
(EOF == strOne[countFlag]))/* 2.检查单词后的一个字符 */
{
if (1 == flag)/* 若匹配,则进行拷贝 */
{
i = countFlag-1;
for (j=0; copyWords[j]!='\0'; j++)
{
strTwo[countTwo++] = copyWords[j];
}
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
fclose(fp);
if (NULL == (fp = fopen("Englishnet.txt", "w")))/* 写入文件 */
{
printf("文件打开失败!\n");
exit(1);
}
for (i=0; i<countTwo; i++)/* 写入文件 */
{
fputc(strTwo[i], fp);
}
fclose(fp);
}
请注意,在不同的运行软件中读取文件的语法有所不同,不同的就在于fopen 后面的“w” “r”有的软件支持”w+“ ”r+“,注意区分!
#include <stdlib.h>
#define SIZE 20 /* 查找单词字符和输入替换单词少于20 */
#define MAXLEN 10000 /* 文章字符不大于10000 */
void main(void)
{
int i, j;
int flag; /* 用于标记匹配单词 */
int countFlag; /* 用于检查匹配计数 */
int countOne = 0; /* 记录未改文章字符个数 */
int countTwo = 0; /* 记录改后文章字符个数 */
char keyWords[SIZE]; /* 查找单词 */
char copyWords[SIZE];/* 替换单词 */
char strOne[MAXLEN]; /* 将未改文章的所有字符储存在里面 */
char strTwo[MAXLEN]; /* 将改后文章的所有字符储存在里面 */
FILE *fp;
printf("请输入要查找的单词: ");
gets(keyWords);
printf("请输入要替换的单词: ");
gets(copyWords);
if (NULL == (fp = fopen("Englishnet.txt", "rw")))/* 读文件 */
{
printf("文件打开失败!\n");
exit(1);
}
while (!feof(fp))/* 读文件 */
{
strOne[countOne++] = fgetc(fp);
}
countOne--;/* 减去最后一个文件结束字符 */
for (i=0; i<countOne; i++)
{
if (keyWords[0] == strOne[i])/* 判断查找单词第一个字符是否匹配 */
{
if ((' ' == strOne[i-1]) || ('\n' == strOne[i-1]) || (0 == i))/* 1.检查单词前的一个字符 */
{
flag = 1;
countFlag = i + 1;
for (j=1; keyWords[j]!='\0'; j++)
{
if (keyWords[j] != strOne[countFlag++])/* 是否匹配 */
{
flag = 0;
break;
}
}
if ((' ' == strOne[countFlag]) ||
('\n' == strOne[countFlag]) ||
(EOF == strOne[countFlag]))/* 2.检查单词后的一个字符 */
{
if (1 == flag)/* 若匹配,则进行拷贝 */
{
i = countFlag-1;
for (j=0; copyWords[j]!='\0'; j++)
{
strTwo[countTwo++] = copyWords[j];
}
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
else/* 另外 */
{
strTwo[countTwo++] = strOne[i];
}
}
fclose(fp);
if (NULL == (fp = fopen("Englishnet.txt", "w")))/* 写入文件 */
{
printf("文件打开失败!\n");
exit(1);
}
for (i=0; i<countTwo; i++)/* 写入文件 */
{
fputc(strTwo[i], fp);
}
fclose(fp);
}
请注意,在不同的运行软件中读取文件的语法有所不同,不同的就在于fopen 后面的“w” “r”有的软件支持”w+“ ”r+“,注意区分!
展开全部
#include<iostream>
#include<conio.h>
#include<string>
#include<stdlib.h>
using namespace std;
int Count=0;
/*
*函数名:findNum
*作者:anglecloudy
*描述:如果存在则返回字符串所在的位置,否则返回0,暂不支持文本中存在多个相同的串
* 先用test.txt文本测试,所有的文本操作都是一样的,不管你怎么命名
*/
int findNum(char *str)
{
FILE *p;
if((p=fopen("test.txt","rb"))==NULL)
{
printf("\n打开文件失败\n");
return 0;
}
char buffer[0x1000]; //保存文件
memset(buffer,0,0x1000); //初始化缓存
size_t fileLen=fread(buffer,sizeof(char),0x1000,p); //得到文件内容,
int readLen=strlen(str);
int IsFind=0;
for(int i=0;i<fileLen;i++)
{
if(strncmp(buffer+i,str,readLen)==0)
{
IsFind=i;
}
}
fclose(p);
return IsFind;
}
int main(void)
{
char *str1="1234567";
int t1=0,t2=0;
if((t1=findNum(str1))==0)
{
printf("没有找到字符串%s\n请按任意键退出\n",str1);
return -1;
}
else
{
printf("字符串%s的位置在%d\n",str1,t1);
}
return 0;
}
#include<conio.h>
#include<string>
#include<stdlib.h>
using namespace std;
int Count=0;
/*
*函数名:findNum
*作者:anglecloudy
*描述:如果存在则返回字符串所在的位置,否则返回0,暂不支持文本中存在多个相同的串
* 先用test.txt文本测试,所有的文本操作都是一样的,不管你怎么命名
*/
int findNum(char *str)
{
FILE *p;
if((p=fopen("test.txt","rb"))==NULL)
{
printf("\n打开文件失败\n");
return 0;
}
char buffer[0x1000]; //保存文件
memset(buffer,0,0x1000); //初始化缓存
size_t fileLen=fread(buffer,sizeof(char),0x1000,p); //得到文件内容,
int readLen=strlen(str);
int IsFind=0;
for(int i=0;i<fileLen;i++)
{
if(strncmp(buffer+i,str,readLen)==0)
{
IsFind=i;
}
}
fclose(p);
return IsFind;
}
int main(void)
{
char *str1="1234567";
int t1=0,t2=0;
if((t1=findNum(str1))==0)
{
printf("没有找到字符串%s\n请按任意键退出\n",str1);
return -1;
}
else
{
printf("字符串%s的位置在%d\n",str1,t1);
}
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询