SHELL脚本学习(十一)正则表达式

一、锚点字符
1.1 锚点行首

脱字符(^)指出行首位置

shell 复制代码
$ cat < file1
test line1
test line2
test line3
line4 test

#打印所有包括文本 test的行
$ sed -n '/test/p' file1
test line1
test line2
test line3
line4 test

#打印所有以test为首的行
$ sed -n '/^test/p' file1
test line1
test line2
test line3
1.2 锚点行尾

美元符号($)指出行尾位置

shell 复制代码
$ cat < file1
test line1
test line2
test line3
line4 test

#打印所有以test结尾的行
$ sed -n '/test$/p' file1
line4 test
二、点字符

点字符(.)能够匹配除换行符之外的所有字符。

shell 复制代码
$ cat<file
cat
hat
 at
a t

$ sed -n '/.at/p' file
cat
hat
 at

空格也是一个字符

三、字符组

方括号 [] 用于定义字符组,字符组内的任一字符匹配,即为匹配。

shell 复制代码
$ cat<file
cat
hat
 at
a t
ubuntu@VM-8-14-ubuntu:~$ sed -n '/[ch]at/p' file
cat
hat
四、排除型字符组

在字符组前加上脱字符即为排除型字符组。排除型字符组的语义正好和字符组相反,不匹配字符组内的任一字符。

shell 复制代码
$ cat<file
cat
hat
 at
a t

$ sed -n '/[^ch]at/p' file
 at
五、区间

可以单连字符(-)表示区间。即 起始字符-结束字符。

shell 复制代码
$ sed -n '/[A-Z][Aa][Tt]/p' file
HAT
CAT

$ sed -n '/[a-z][Aa][Tt]/p' file
cat
hat

A-Z 表示 当前字符 要匹配单个 大写字母

a-z 表示 当前字符 要匹配单个 小写字母

六、特殊字符

除了定义自己的字符组,BRE(basic regular expression 基础正则表达式)还提供了一些特殊字符组。
BRE特殊字符组

字符组 描述
[[ :alpha:]] 匹配任意字符字符,a-z A-Z
[[:alnum:]] 匹配任意字母数字,z-a A-Z 0-9
[[:blank:]] 匹配空格或制表符
[[:digit:]] 匹配0-9中的数字
[[:lower:]] 匹配小写字母 a-z
[[:print:]] 匹配任意可打印字符
[[:punct:]] 匹配标点符号
[[:space:]] 匹配任意空白符。空格、制表符、换行符、回车等。。。
[[:upper:]] 匹配任意大写字母 A-Z

特殊字符组的使用方式和普通字符组一样。

shell 复制代码
$ cat <file
cat
hat
 at
a t
HAT
CAT

$ sed -n '/[[:upper:]][Aa][Tt]/p' file
HAT
CAT

$ sed -n '/[[:lower:]][Aa][Tt]/p' file
cat
hat
七、星号 *

在字符后面加 星号*,表示该字符必须匹配0次或多次。

shell 复制代码
$ echo "hello" | sed -n '/hel*o/p'
hello
$ echo "heo" | sed -n '/hel*o/p'
heo
$ echo "heto" | sed -n '/hel*o/p'
$ 
相关推荐
文城5213 分钟前
Mysql存储过程(学习自用)
数据库·学习·mysql
HaoHao_01012 分钟前
AWS Serverless Application Repository
服务器·数据库·云计算·aws·云服务器
我们的五年29 分钟前
【C语言学习】:C语言补充:转义字符,<<,>>操作符,IDE
c语言·开发语言·后端·学习
Golinie35 分钟前
【C++高并发服务器WebServer】-2:exec函数簇、进程控制
linux·c++·webserver·高并发服务器
Rhys..43 分钟前
Jenkins pipline怎么设置定时跑脚本
运维·前端·jenkins
励志去大厂的菜鸟43 分钟前
系统相关类——java.lang.Math (三)(案例详细拆解小白友好)
java·服务器·开发语言·深度学习·学习方法
Icoolkj1 小时前
微服务学习-Nacos 注册中心实战
linux·学习·微服务
老王聊主机1 小时前
2025年华为云一键快速部署幻兽帕鲁联机服务器教程
运维·服务器·华为云
qq_243050791 小时前
Netmask:网络掩码生成和转换程序!全参数详细教程!Kali Linux 教程!黑客渗透测试!
运维·网络·web安全·网络安全·黑客·渗透测试·kali linux
siy23331 小时前
【c语言日寄】Vs调试——新手向
c语言·开发语言·学习·算法