码迷,mamicode.com
首页 > 其他好文 > 详细

正则表达式

时间:2020-05-04 01:02:39      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:gre   shel   archive   hello   规则   rgb   grep -n   cat   学习   

正则表达式,也叫规则表达式

通过规则表达式找到我们想要的东西


参数

^ 锚定行首

$ 锚定行尾

^xxx$ 结合使用,既位于行首也位于行尾,即整行只有xxx

\< 锚定词首

\> 锚定词尾

\<与\>  结合使用 ,即既是行首也是行尾,即单独的字符串,可以用\b代替

\B 匹配非单词边界,与\b相反



^ 案例

[root@tz shell]# cat regex
hello world
hi	hello
hello ,zsy
[root@tz shell]# grep "^hello" regex
hello world
hello ,zsy


$ 案例

[root@tz shell]# grep "hello$" regex
hi	hello


^xxx$ 案例

[root@tz shell]# cat regex
hello world
hi	hello
hello ,zsy
hello
[root@tz shell]# grep -n --color "^hello$" regex
4:hello

^$ 匹配空行

[root@tz shell]# grep -n "^$" regex
3:


\<与\> 案例

[root@tz shell]# cat REG
abchello world #可以看到hello位于abchello词尾
abc helloabc abc
abc abchelloabc abc
[root@tz shell]# grep --color "\<hello" REG
abc helloabc abc
[root@tz shell]# grep --color "hello\>" REG
abchello world

\<与\>  结合

[root@tz shell]# cat REG
abchello world
abc helloabc abc
abc abchelloabc abc
hello
[root@tz shell]# grep --color "\<hello\>" REG
hello


\b 案例

[root@tz shell]# grep --color "\bhello" REG
abc helloabc abc
hello
[root@tz shell]# grep --color "hello\b" REG
abchello world
hello
[root@tz shell]# grep --color "\bhello\b" REG
hello


\B 案例

只要词首不是hello都会被匹配

[root@tz shell]# grep --color "\Bhello" REG
abchello world
abc abchelloabc abc



学习来自朱双印博客

博客很赞,通俗易懂

http://www.zsythink.net/archives/1845

正则表达式

标签:gre   shel   archive   hello   规则   rgb   grep -n   cat   学习   

原文地址:https://www.cnblogs.com/tz90/p/12824665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!