小型的文本编辑器(使用能通配符*和?)
2008-03-08 12:25:48 来源:WEB开发网核心提示:小型的文本编辑器(使用能通配符*和?)使用时确保你要处理的文件在当前工作目录下。#include <stdio.h>#include <stdlib.h>#include <string.h>#include <conio.h>typedef strUCt { char
小型的文本编辑器(使用能通配符*和?)使用时确保你要处理的文件在当前工作目录下。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h> typedef strUCt {
char Word[20];
int length;
}wordtype;
wordtype seekword; /*seekword用来放要查找的词*/
wordtype save; /*save用来临时成放从文件中读出的词*/ int check(char ch) /*检查是否是合法的字符*/
{
if(ch<='9'&&ch>='0'ch<='z'&&ch>='a'ch<='Z'&&ch>='A')
return 1;
else
return 0; } void length() /*计算seekword 和save中的word[]的长度*/
{
int i; seekword.length=0;
save.length=0;
for(i=0;seekword.word[i]!='
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h> typedef strUCt {
char Word[20];
int length;
}wordtype;
wordtype seekword; /*seekword用来放要查找的词*/
wordtype save; /*save用来临时成放从文件中读出的词*/ int check(char ch) /*检查是否是合法的字符*/
{
if(ch<='9'&&ch>='0'ch<='z'&&ch>='a'ch<='Z'&&ch>='A')
return 1;
else
return 0; } void length() /*计算seekword 和save中的word[]的长度*/
{
int i; seekword.length=0;
save.length=0;
for(i=0;seekword.word[i]!='
更多精彩
赞助商链接