正则表达式
正则表达式,也叫规则表达式
通过规则表达式找到我们想要的东西
参数
^ 锚定行首
$ 锚定行尾
^xxx$ 结合使用,既位于行首也位于行尾,即整行只有xxx
\< 锚定词首
\> 锚定词尾
\<与\> 结合使用 ,即既是行首也是行尾,即单独的字符串,可以用\b代替
\B 匹配非单词边界,与\b相反
^ 案例
[ shell]# cat regex hello world hi hello hello ,zsy [ shell]# grep "^hello" regex hello world hello ,zsy
$ 案例
[ shell]# grep "hello$" regex hi hello
^xxx$ 案例
[ shell]# cat regex hello world hi hello hello ,zsy hello [ shell]# grep -n --color "^hello$" regex 4:hello
^$ 匹配空行
[ shell]# grep -n "^$" regex 3:
\<与\> 案例
[ shell]# cat REG abchello world #可以看到hello位于abchello词尾 abc helloabc abc abc abchelloabc abc [ shell]# grep --color "\<hello" REG abc helloabc abc [ shell]# grep --color "hello\>" REG abchello world
\<与\> 结合
[ shell]# cat REG abchello world abc helloabc abc abc abchelloabc abc hello [ shell]# grep --color "\<hello\>" REG hello
\b 案例
[ shell]# grep --color "\bhello" REG abc helloabc abc hello [ shell]# grep --color "hello\b" REG abchello world hello [ shell]# grep --color "\bhello\b" REG hello
\B 案例
只要词首不是hello都会被匹配
[ shell]# grep --color "\Bhello" REG abchello world abc abchelloabc abc
学习来自朱双印博客
博客很赞,通俗易懂
相关推荐
wangzhaotongalex 2020-10-20
wyq 2020-11-11
TLROJE 2020-10-26
风雨断肠人 2020-10-13
duanqingfeng 2020-09-29
rechanel 2020-11-16
cshanzhizi 2020-10-16
luofuIT成长记录 2020-09-22
phphub 2020-09-10
taomengxing 2020-09-07
MaggieRose 2020-08-19
flyingssky 2020-08-18
山水沐光 2020-08-18
jyj00 2020-08-15
AHuqihua 2020-08-09
山水沐光 2020-08-03