一.扩展正则表达式的概述
- 使用扩展正则表达式,需要使用egrep命令,egrep命令是一个搜索文件获得模式,使用该命令可以搜索文件中的任意字符串和符号,可以搜索一个或者多个文件的字符串,一个提示符可以是单个字符、一个字符串、一个字或一个句子
二.扩展正则表达式的元字符
- +,重复零个或者多个的前一个字符
[root@localhost ~]# egrep -n 'wo+d' a.txt
5:wood
6:wooood
12:wod
13:wood
14:wooooood
[root@localhost ~]#
- ?,查询是否存在有前一个字符
[root@localhost ~]# egrep -n 'bes?t' a.txt
17:best
18:bet
[root@localhost ~]#
- | ,使用或者(or)的方式找出多个字符
[root@localhost ~]# egrep -n 'of|if|on' a.txt
19:often
20:ifconfig
22:ontime
[root@localhost ~]#
- (),查找“组”字符串
[root@localhost ~]# egrep -n 'be(s|a)t' a.txt
17:best
23:beat
[root@localhost ~]#
- ()+ ,辨别多个重复的组
[root@localhost ~]# egrep -n 'A(xyz)+C' a.txt
24:AxyzC
25:AxyzxyzC