首页 > 学院 > 开发设计 > 正文

小型的文本编辑器(使用能通配符*和?)

2019-11-17 05:47:44
字体:
来源:转载
供稿:网友
小型的文本编辑器(使用能通配符*和?)使用时确保你要处理的文件在当前工作目录下。
#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]!='

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表