标签:blog leave star inline pad 技术 val body nal
当一个文件或命令输出中抽取或过滤文本时,可以使用正则表达式(RE),正则表达式是一些特殊或很不特殊的字符串模式的集合。
在Linux中grep、awk、sed均可解释正则
^ | 只匹配行首 |
$ | 只匹配行尾 |
* | 一个单字符后紧跟*,匹配0个或多个此单字符 |
[] | 匹配[]内字符。可以使一个单字符,也可以是字符序列。可以使用-代替[]内字符序列范围,如用[1-3]代替[123] |
\ | 用来屏蔽一个元字符的特殊含义。\可以失去它应有的意义 |
. | 匹配任意单字符 |
pattern\{\n} | 用来匹配前面pattern出现次数。n为次数 |
pattern\{n,\}m | 含义同上,但次数最少为n |
pattern\{n,m\} | 含义同上,但次数在n到m之间 |
现在有file01.txt文件内容如下:
Rolling In the Deep -- Adele
滑向深处
9999999999999999
There‘s a fire starting in my heart,
我心中燃起了火焰
Reaching a fever pitch and it‘s bringing me out the dark
那温度驱走了黑暗
Finally, I can see you crystal clear.
我终于看得清你
Go ahead and sell me out and I‘ll lay your ship bare.
放弃自己的全部赤裸的留在你的心中
See how I leave, with every piece of you
我会一片一片把你剥离我的记忆
Don‘t underestimate the things that I will do.
不要以为我真的不会这么做
There‘s a fire starting in my heart,
心中燃起了火焰
1.^匹配行首
说明:匹配以Th开头的行
[root@localhost test]# grep ^Th file01.txt
2.$匹配行尾
说明:匹配以dark结尾的行
[root@localhost test]# grep dark$ file01.txt
3.*匹配0个或单个字符
说明:匹配you出现的行
[root@localhost test]# grep you* file01.txt
3.1 搜索特定字符串"and"
n为行号
[root@localhost test]# grep -n ‘and‘ file01.txt
3.2 搜寻不包含特定字符串"and"
[root@localhost test]# grep -vn ‘and‘ file01.txt标签:blog leave star inline pad 技术 val body nal
原文地址:https://www.cnblogs.com/OliverQin/p/9745068.html