Shell 编程 正则表达式
2019-10-16 07:48:59来源:博客园 阅读 ()
Shell 编程 正则表达式
本篇主要写一些shell
脚本正则表达式的使用基础。
概述
正则表达式分为基础正则表达式(Regular Expression)与扩展正则表达式(Extended Regular Expression)。
它不是一个工具程序,而是一个字符串处理的标准依据,是使用单个字符串搜索、匹配一系列符合某个语法规则的字符串。
它由普通字符(a~z)以及特殊字符(元字符)组成。
linux 文本处理工具
文本处理工具 | 基础正则表达式 | 扩展正则表达式 |
---|---|---|
vi编辑器 | 支持 | / |
grep | 支持 | / |
egrep | 支持 | 支持 |
sed | 支持 | / |
awk | 支持 | 支持 |
基础正则表达式
- 基础正则表达式常见元字符
^
:匹配输入字符串的开始位置。在方括号表达式中使用,表示不包含该字符集合。要匹配^
字符本身,使用\^
$
:匹配输入字符串的结尾位置。如果设置了RegExp
对象的Multiline
属性,则$
也匹配\n
或\r
。要匹配$
字符本身,请使用\$
.
:匹配除\r\n
之外的任何单个字符
\
:将下一个字符标记为特殊字符、原义字符、向后引用、八进制转义符。例如,n
匹配字符n
。 \n
匹配换行符。序列\\
匹配\
,而\(
则匹配(
*
:匹配前面的子表达式零次或多次。要匹配*
字符,请使用\*
[]
:字符集合。匹配所包含的任意一个字符。例如,[abc]
可以匹配plain
中的a
[^]
:赋值字符集合。匹配未包含的一个任意字符。例如,[^abc]
可以匹配plain
中plin
中的任何一个字母
[n1-n2]
:字符范围。匹配指定范围内的任意一个字符。例如,[a-z]
可以匹配a
到z
范围内的任意一个小写字母字符。
{n}
:n
是一个非负整数,匹配确定的n
次。例如,o{2}
不能匹配Bob
中的o
,但是能匹配food
中的两个o
{n,}
:n
是一个非负整数,至少匹配n
次。例如,o{2,}
不能匹配Bob
中的o
,但能匹配foooood
中的所有o
。o{1,}
等价于o+
。o{0,}
则等价于o*
{n,m}
:m
和n
均为非负整数,其中n<=m
,最少匹配n
次且最多匹配m
次
- 使用
grep
做示例,首先准备一个测试文件
he was short and fat.
He was wearing a blue polo shirt with black pants.
The home of Football on BBC Sport online.
the tongue is boneless but it breaks bones.12!
google is the best tools for search keyword.
The year ahead will test our political establishment to the limit.
PI=3.141592653589793238462643383249901429
a wood cross!
Actions speak louder than words
#woood #
#woooooood #
AxyzxyzxyzxyzC
I bet this place is really spooky late at night!
Misfortunes never come alone/single.
I shouldn't have lett so tast.
特定字符
-n
:显示行号
-i
:不区分大小写
-v
:反向选择
[root@localhost ~]# grep -n 'the' test.txt
4:the tongue is boneless but it breaks bones.12!
5:google is the best tools for search keyword.
6:The year ahead will test our political establishment to the limit.
[root@localhost ~]# grep -in 'the' test.txt
3:The home of Football on BBC Sport online.
4:the tongue is boneless but it breaks bones.12!
5:google is the best tools for search keyword.
6:The year ahead will test our political establishment to the limit.
[root@localhost ~]# grep -vn 'the' test.txt
1:he was short and fat.
2:He was wearing a blue polo shirt with black pants.
3:The home of Football on BBC Sport online.
7:PI=3.141592653589793238462643383249901429
8:a wood cross!
9:Actions speak louder than words
10:
11:
12:#woood #
13:#woooooood #
14:AxyzxyzxyzxyzC
15:I bet this place is really spooky late at night!
16:Misfortunes never come alone/single.
17:I shouldn't have lett so tast.
集合“[]”
- 中括号“[]”中无论又几个字符,都只匹配其中一个
[root@localhost ~]# grep -n 'sh[io]rt' test.txt
1:he was short and fat.
2:He was wearing a blue polo shirt with black pants.
- 匹配重复单个字符
oo
[root@localhost ~]# grep -n 'oo' test.txt
3:The home of Football on BBC Sport online.
5:google is the best tools for search keyword.
8:a wood cross!
12:#woood #
13:#woooooood #
15:I bet this place is really spooky late at night!
- 查找
oo
前不是w
的字符串
[root@localhost ~]# grep -n '[^w]oo' test.txt
3:The home of Football on BBC Sport online.
5:google is the best tools for search keyword.
12:#woood #
13:#woooooood #
15:I bet this place is really spooky late at night!
- 查找
oo
前没有小写字母的字符串
[root@localhost ~]# grep -n '[^a-z]oo' test.txt
3:The home of Football on BBC Sport online.
- 查找包含数字的行
[root@localhost ~]# grep -n '[0-9]' test.txt
4:the tongue is boneless but it breaks bones.12!
7:PI=3.141592653589793238462643383249901429
行首“^”
- 查找已
the
为行首的行
[root@localhost ~]# grep -n '^the' test.txt
4:the tongue is boneless but it breaks bones.12!
- 查找是小写字母开头的行
[root@localhost ~]# grep -n '^[a-z]' test.txt
1:he was short and fat.
4:the tongue is boneless but it breaks bones.12!
5:google is the best tools for search keyword.
8:a wood cross!
- 查找是大写字母开头的行
[root@localhost ~]# grep -n '^[A-Z]' test.txt
2:He was wearing a blue polo shirt with black pants.
3:The home of Football on BBC Sport online.
6:The year ahead will test our political establishment to the limit.
7:PI=3.141592653589793238462643383249901429
9:Actions speak louder than words
14:AxyzxyzxyzxyzC
15:I bet this place is really spooky late at night!
16:Misfortunes never come alone/single.
17:I shouldn't have lett so tast.
- 查找不是字母开头的行
[root@localhost ~]# grep -n '^[^a-zA-Z]' test.txt
12:#woood #
13:#woooooood #
行尾“$”
- 查找以
.
结尾的行,需要使用转义字符
[root@localhost ~]# grep -n '\.$' test.txt
1:he was short and fat.
2:He was wearing a blue polo shirt with black pants.
3:The home of Football on BBC Sport online.
5:google is the best tools for search keyword.
6:The year ahead will test our political establishment to the limit.
16:Misfortunes never come alone/single.
17:I shouldn't have lett so tast.
- 查找空白行
[root@localhost ~]# grep -n '^$' test.txt
10:
11:
任意一个字符“.”
- 查找
w
和d
中间有两个字符的字符串
[root@localhost ~]# grep -n 'w..d' test.txt
5:google is the best tools for search keyword.
8:a wood cross!
9:Actions speak louder than words
重复字符“*”
- 查找至少两个以上的
o
的字符串,*
代表重复前面的一个字符零个或多个
[root@localhost ~]# grep -n 'ooo*' test.txt
3:The home of Football on BBC Sport online.
5:google is the best tools for search keyword.
8:a wood cross!
12:#woood #
13:#woooooood #
15:I bet this place is really spooky late at night!
- 查找
w
和d
中间有两个至少有一个o
的字符串
[root@localhost ~]# grep -n 'woo*d' test.txt
8:a wood cross!
12:#woood #
13:#woooooood #
- 查找
w
和d
中间可有可无的字符串
[root@localhost ~]# grep -n 'w.*d' test.txt
1:he was short and fat.
5:google is the best tools for search keyword.
8:a wood cross!
9:Actions speak louder than words
12:#woood #
13:#woooooood #
- 查找任意数字
[root@localhost ~]# grep -n '[0-9][0-9]*' test.txt
4:the tongue is boneless but it breaks bones.12!
7:PI=3.141592653589793238462643383249901429
连续字符范围“{}”
- 查找有连续两个
o
的字符串,需要转义
[root@localhost ~]# grep -n 'o\{2\}' test.txt
3:The home of Football on BBC Sport online.
5:google is the best tools for search keyword.
8:a wood cross!
12:#woood #
13:#woooooood #
15:I bet this place is really spooky late at night!
- 查找
w
和d
中间包含2~5
个o
的字符串
[root@localhost ~]# grep -n 'wo\{2,5\}d' test.txt
8:a wood cross!
12:#woood #
- 查找
w
和d
中间包含两个以上o
的字符串
[root@localhost ~]# grep -n 'wo\{2,\}d' test.txt
8:a wood cross!
12:#woood #
13:#woooooood #
扩展正则表达式
- 扩展正则表达式常见元字符
+
:重复一个或者一个以上的前一个字符
?
:零个或者一个的前一个字符
|
:使用或者or
的方式找出多个字符
()
:查找组
字符串
()+
:辨别多个重复的组
- 使用
rgrep
做示例,查询w
和d
之间包含一个以上o
的字符串
[root@localhost ~]# egrep -n 'wo+d' test.txt
8:a wood cross!
12:#woood #
13:#woooooood #
- 查询
bet
和best
这两个字符串
[root@localhost ~]# egrep -n 'bes?t' test.txt
5:google is the best tools for search keyword.
15:I bet this place is really spooky late at night!
- 查询
of
或者if
或者on
字符串
[root@localhost ~]# egrep -n 'of|is|on' test.txt
3:The home of Football on BBC Sport online.
4:the tongue is boneless but it breaks bones.12!
5:google is the best tools for search keyword.
6:The year ahead will test our political establishment to the limit.
9:Actions speak louder than words
15:I bet this place is really spooky late at night!
16:Misfortunes never come alone/single.
- 查询
tast
或者test
字符串
[root@localhost ~]# egrep -n 't(a|e)st' test.txt
6:The year ahead will test our political establishment to the limit.
17:I shouldn't have lett so tast.
- 查询开头的
A
结尾是C
,中间有一个以上的xyz
字符串
[root@localhost ~]# egrep -n 'A(xyz)+C' test.txt
14:AxyzxyzxyzxyzC
原文链接:https://www.cnblogs.com/llife/p/11675283.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Linux指令和shell脚本 2020-06-11
- Xshell如何配置并远程连接Linux服务器详解 2020-05-31
- Bash Shell基础笔记 2020-05-26
- Shell脚本关于循环的一些总结 2020-05-18
- Xshell 与 Xftp 的安装与使用 2020-05-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash