正则表达式

2022/9/14 23:19:26

本文主要是介绍正则表达式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

正则表达式

目录
  • 正则表达式
    • 基本正则表达式
    • 扩展正则表达式

基本正则表达式

元字符

. 匹配任意单个字符

[root@localhost ~]# mkdir /temp
[root@localhost temp]# touch {1..9}
[root@localhost temp]# ls | grep '^.$'
1
2
3
4
5
6
7
8
9
#同理,两个点就是任意两个字符

[] 匹配指定范围内的任意单个字符

//匹配2,3,4
[root@localhost temp]# ls | grep '^[234]$'
2
3
4

//匹配2-6
[root@localhost temp]# ls | grep '^[2-6]$'
2
3
4
5
6
//当‘-’在中括号开始和结尾处,表示‘-’本身,例如
[root@localhost temp]# ls | grep '^[-26]$'
2
6
[root@localhost temp]# ls | grep '^[26-]$'
2
6
[root@localhost temp]# ls | grep '^[-26-]$'
2
6

[^] 匹配指定范围外的任意单个字符

//匹配2,6外的任意单个字符
[root@localhost temp]# ls | grep '^[^26]$'
1
3
4
5
7
8
9
//‘^’必须在中括号的开始,否则表示‘^’本身,例如
[root@localhost temp]# ls | grep '^[2^6^]$'
2
6

匹配次数(贪婪模式)

* 匹配器前面的任意单个字符任意次(0到正无穷次)

//‘*’前面的单个字符,也就是b,可以没有一次,也可以有任意次
[root@localhost temp]# ls | grep '^ab*c$'
abbbc
abc
ac
[root@localhost temp]# ls | grep '^ab*$'
a
ab
abb
abbb

.* 任意长度的任意字符

[root@localhost temp]# ls | grep '.*'
1
2
3
4
5
6
7
8
9
a
ab
abb
abbb
abbbc
abc
ac

? 匹配其前面任意单个字符0次或1次

[root@localhost temp]# ls | grep '^ab\?$'
a
ab
[root@localhost temp]# ls | grep '^ab\?c$'
abc
ac

\+ 匹配其前面任意单个字符至少一次

[root@localhost temp]# ls | grep '^ab\+$'
ab
abb
abbb
[root@localhost temp]# ls | grep '^ab\+c$'
abbbc
abc

\{m,n} 匹配其前面任意单个字符至少m次,至多n次

//匹配\{1,2\}前面的单个字符,也就是b,至少一次,至多2次
[root@localhost temp]# ls | grep '^ab\{1,2\}$'
ab
abb

//只匹配2次
[root@localhost temp]# ls | grep '^ab\{2\}$'
abb

//只匹配3次
[root@localhost temp]# ls | grep '^ab\{3\}$'
abbb

位置锚定

^ 锚定行首,此字符后面的任意单个字符必须出现在行首

[root@localhost temp]# touch jjabc aabc abccld

[root@localhost temp]# ls | grep '^a'
a
aabc
ab
abb
abbb
abbbc
abc
abccld
ac
[root@localhost temp]# ls | grep '^j'
jjabc

$ 锚定行尾,此字符前面的任意单个字符必须出现在行尾

[root@localhost temp]# ls | grep 'b$'
ab
abb
abbb
[root@localhost temp]# ls | grep 'c$'
aabc
abbbc
abc
ac
jjabc

^$ 空白行

[root@localhost temp]# cat > a << EOF
> hello world
> 
> nihao shijie
> EOF
[root@localhost temp]# cat a
hello world

nihao shijie
//过滤文本中的空白行
[root@localhost temp]# cat a | grep -v '^$'		//-v是grep命令中取反的意思
hello world
nihao shijie

\<或\b 锚定词首,其后面的任意字符必须作为单词的词首

[root@localhost temp]# cat a
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg


[root@localhost temp]# cat a | grep '\<hello'
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

[root@localhost temp]# cat a | grep '\bhello'
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

\>或\b 锚定词尾,其前面的任意字符必须作为单词的词首

[root@localhost temp]# cat a | grep 'hello\>'
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

[root@localhost temp]# cat a | grep 'hello\b'
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

分组

\(\)

[root@localhost temp]# touch ab abab ababab aabb abb aab

[root@localhost temp]# ls | grep '^\(ab\)*$'
ab
abab
ababab

后向引用

\1 引用第一个左括号以及与之对应的右括号所包括的所有内容

\2 引用第二个左括号以及与之对应的右括号所包括的所有内容

[root@localhost temp]# cat a 
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

[root@localhost temp]# cat a | sed 's/hello \(.*\) \(.*\)/hello \2 \1/g'
hello gjh world hello tom hello asdfa asdhello
      hello shijie world nihao
hi world hello helloasdg world worldhello


[root@localhost temp]# cat a | sed 's/hello \(world\) \(hello\)/hello \2 \1/g'
hello hello world tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

扩展正则表达式

字符匹配

. 匹配任意单个字符

[] 匹配指定范围内的任意单个字符

[^] 匹配指定范围外的任意单个字符

次数匹配

* 匹配其前面的任意单个字符任意次

? 匹配其前面的任意单个字符1次或0次

[root@localhost temp]# ls | grep -E '^ab?$'		//grep -E 是使用扩展正则表达式
a
ab
[root@localhost temp]# ls | grep -E '^ab?$c'
[root@localhost temp]# ls | grep -E '^ab?c$'
abc
ac

+ 匹配其前面的任意单个字符至少1次

[root@localhost temp]# ls | grep -E '^ab+$'
ab
abb
abbb
[root@localhost temp]# ls | grep -E '^ab+c$'
abbbc
abc

{m,n} 匹配其前面的任意单个字符至少m次,至多n次

//匹配{1,2}前面的单个字符,也就是b,至少一次,至多2次
[root@localhost temp]# ls | grep -E '^ab{1,2}$'
ab
abb

//只匹配2次
[root@localhost temp]# ls | grep -E '^ab{2}$'
abb

//只匹配3次
[root@localhost temp]# ls | grep -E '^ab{3}$'
abbb

位置锚定

^ 锚定行首,此字符后面的任意单个字符必须出现在行首

$ 锚定行尾,此字符前面的任意单个字符必须出现在行尾

^$ 空白行

\<或\b 锚定词首,其后面的任意字符必须作为单词的词首

\>或\b 锚定词尾,其前面的任意字符必须作为单词的词首

分组

()

[root@localhost temp]# ls | grep -E '^(ab)*$'
ab
abab
ababab

后向引用

[root@localhost temp]# cat a
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

[root@localhost temp]# cat a | sed -r 's/hello (.*) (.*)/hello \2 \1/g'		//sed -r使用扩展正则表达式
hello gjh world hello tom hello asdfa asdhello
      hello shijie world nihao
hi world hello helloasdg world worldhello

[root@localhost temp]# cat a | sed -r 's/hello (.*) (.*) (.*)/hello \2 \3 \1/g'
hello asdhello gjh world hello tom hello asdfa
      hello nihao shijie world
hi world hello worldhello helloasdg world

[root@localhost temp]# cat a | sed -r 's/hello (world) (hello)/hello \2 \1/g'
hello hello world tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg

或者

| or 默认匹配|的整个左侧或者整个右侧的内容

[root@localhost temp]# cat a | grep -E 'hello|hi'
hello world hello tom hello asdfa asdhello gjh
      hello world nihao shijie
hi world hello world worldhello helloasdg


这篇关于正则表达式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程