linux正则表达式

Posted 92#

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux正则表达式相关的知识,希望对你有一定的参考价值。

  正则表达式是一种字符串模式匹配,使用灵活、功能强大,使用简单的方式对字符串进行控制。

1.使用grep进行字符串匹配

测试文本 1.txt

helloworld
haa
12345678
[email protected]#$%^&*(
ASDwexvRSD
,./]];]{}_()^%
asdasdasd

 搜索文件中包含"hello"

grep -n hello 1.txt

  利用中括号 [] 来搜寻集合字符

$ grep -n "h[ae]" 1.txt
1:helloworld
2:haa

行首与行尾字符 ^ $

$ grep -n "^he" 1.txt
1:helloworld
$ grep -n %$ 1.txt
6:,./]];]{}_()^%

任意一个字符 . 与重复字符 *

$ grep -n h. 1.txt
1:helloworld
2:haa
$ grep -n "he.*ld" 1.txt
1:helloworld

限定连续 RE 字符范围 {}

$ grep -n ha\{2\} 1.txt
2:haa

 

以上是关于linux正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

markdown 正则表达式模式片段

正则表达式匹配特定的 URL 片段而不是所有其他 URL 可能性

循环通过 python 正则表达式匹配

asp.net 使用正则表达式验证包含打开/关闭括号片段的属性字符串

python 正则表达式 re模块基础

python成长之路第三篇_正则表达式