项目名称:员工信息模糊查询系统
项目要求:
1.实现员工信息的模糊查询,将匹配上的字符高亮显示
2.返回匹配成功的数量
1 #encoding=utf-8
2 __author__ = 'heng'
3 """
4 ------------------------------------------------------------------------------------------------------------
5 项目名称:员工信息模糊查询系统
6 项目要求:
7 1.实现员工信息的模糊查询,将匹配上的字符高亮显示
8 2.返回匹配成功的数量
9 ------------------------------------------------------------------------------------------------------------
10 """
11 import re
12
13 #输入要匹配的信息
14 the_match = raw_input("please enter the match:")
15 #逐行导入数据库中的信息
16 the_information = file(r'F:python projectemployee informationemployee.txt')
17 #用于统计匹配的个数
18 count = 0
19 for line in the_information.xreadlines(): #将数据库之内的数据逐行读取
20 if the_match in line:
21 count += 1
22 the_match1 = "