第二十四天笔记

第二十四天笔记

for 和 select 循环语句的应用实践

Linux 系统产生随机数的方法

bash 复制代码
[han@han-shell ~]$ echo "han$RANDOM"|md5sum |cut -c 1-8
884075a2

Linux 正则表达式

环境准备

bash 复制代码
[han@shell ~]$ vim words
cat
category
acat
concatenate
dog

普通字符

bash 复制代码
[han@shell ~]$ cat words |grep 'cat'
cat
category
acat
concatenate

字符集

...

匹配 ... 中的任意一个字符。

bash 复制代码
[han@shell ~]$ echo cbt >> words
[han@shell ~]$ echo c1t >> words
[han@shell ~]$ cat words | grep 'c[ab]t'
cat
category
acat
concatenate
cbt
a-z A-Z 0-9
bash 复制代码
[han@shell ~]$ cat words | grep 'c[a-z]t'
cat
category
acat
concatenate
cbt
[han@shell ~]$ echo cCt >> words
[han@shell ~]$ cat words | grep 'c[A-Z]t'
cCt
[han@shell ~]$ cat words | grep 'c[0-9]t'
c1t
[han@shell ~]$ cat words | grep 'c[a-z0-9]t'
cat
category
acat
concatenate
cbt
c1t
[han@shell ~]$ cat words | grep 'c[a-zA-Z0-9]t'
cat
category
acat
concatenate
cbt
c1t
cCt
# 要想匹配-符号,将改符号写在第一个位置
[han@shell ~]$ echo c-t >> words
[han@shell ~]$ cat words | grep 'c[-a-zA-Z0-9]t'
cat
category
acat
concatenate
cbt
c1t
cCt
c-t
\^...

匹配除了 ... 中字符的所有字符。

bash 复制代码
[han@shell ~]$ cat words | grep 'c[^ab]t'
c1t
# ^放中间会被当做普通字符
[han@shell ~]$ cat words | grep 'c[a^b]t'
cat
category
acat
concatenate
cbt
.

匹配除换行符( \n 、 \r )之外的任何单个字符,相等于 \^\\n\\r

bash 复制代码
[han@shell ~]$ cat words | grep 'c.t'
cat
category
acat
concatenate
cbt
c1t
cCt
c-t
\

将下一个字符标记为或特殊字符、或原义字符、或向后引用、或八进制转义符。

bash 复制代码
[han@shell ~]$ echo c.t >> words
[han@shell ~]$ cat words | grep 'c\.t'
c.t
# 匹配普通字符,虽然可以匹配,但强烈建议不要在前面加\
[han@shell ~]$ cat words | grep 'c\at'
cat
category
acat
concatenate
|

| 符号是扩展表达式中元字符,指明两项之间的一个选择。要匹配 | ,请使用 |

bash 复制代码
# 使用egrep或者grep -E 匹配
[han@shell ~]$ cat words | egrep 'cat|dog'
# 或者
[han@shell ~]$ cat words | grep -E 'cat|dog'
cat
category
acat
concatenate
dog

定位符

^

匹配行首位置。

bash 复制代码
[han@shell ~]$ cat words | grep '^cat'
cat
category
$

匹配行末位置。

bash 复制代码
[han@shell ~]$ cat words | grep 'cat$'
cat
acat
[han@shell ~]$ cat words | grep '^cat$'
cat
\b

匹配一个单词边界

bash 复制代码
[han@shell ~]$ echo hello cat >> words
[han@shell ~]$ cat words | grep '\bcat'
cat
category
hello cat
[han@shell ~]$ cat words | grep 'cat\b'
cat
acat
hello cat
[han@shell ~]$ cat words | grep '\bcat\b'
cat
hello cat
\B

非单词边界匹配

bash 复制代码
[han@shell ~]$ cat words | grep '\Bcat'
acat
concatenate

限定次数

*

匹配前面的子表达式任意次数

bash 复制代码
[han@shell ~]$ echo dg >> words
[han@shell ~]$ echo doog >> words
[han@shell ~]$ cat words | grep 'do*g'
dog
dg
doog
?

? 是扩展表达式元字符,匹配前面的子表达式一次以下次数

bash 复制代码
[han@shell ~]$ cat words | egrep 'do?g'
dog
dg
{n}

{} 是扩展表达式元字符,用于匹配特定次数。例如: {n} ,配置n次。

bash 复制代码
[han@shell ~]$ cat words | egrep 'do{2}g'
doog
{m,n}

{m,n} ,是扩展表达式元字符,用于匹配次数介于m-n之间。

bash 复制代码
[han@shell ~]$ echo dooog >> words
[han@shell ~]$ echo doooog >> words
[han@shell ~]$ cat words | egrep 'do{2,3}g'
doog
dooog
{m,}

{m,} ,是扩展表达式元字符,匹配前面的子表达式m次以上次数。

bash 复制代码
[han@shell ~]$ cat words | egrep 'do{2,}g'
doog
dooog
doooog
{,n}

{,n} ,是扩展表达式元字符,匹配前面的子表达式n次以下次数

bash 复制代码
[han@shell ~]$ cat words | egrep 'do{,3}g'
dog
doog
dg
dooog
**思考: **

如何过滤出以下文件中所有有效IPv4地址?

bash 复制代码
'\b(([1-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.)(([0-9]|[1-9][0-
9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){2}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-
4][0-9]|25[0-5])\b'
相关推荐
RainCity19 小时前
Java Swing 自定义组件库分享(十二)
java·笔记·后端
LinXunFeng8 天前
Obsidian - 使用 Share Note 分享笔记并自部署
前端·笔记·github
闪闪发亮的小星星13 天前
高斯光以及高斯光公式解释
笔记
cqbzcsq13 天前
CellFlow虚拟细胞论文阅读
论文阅读·人工智能·笔记·学习·生物信息
阿米亚波13 天前
【Windows】QEMU 启动 openEuler aarch64/arm64 架构系统 + 离线软件源
linux·windows·经验分享·笔记·架构·arm
自传.13 天前
尚硅谷 Vibe Coding|第三章(1) Claude Code深度使用与进阶技巧 学习笔记
笔记·学习·尚硅谷·vibecoding
.千余13 天前
【C++】模板进阶全解:非类型参数|全特化|偏特化|分离编译完全指南
开发语言·c++·笔记·学习·其他
自传.13 天前
尚硅谷 Vibe Coding|第二章 AI编程工具生态 学习笔记
笔记·学习·ai编程·尚硅谷·vibe coding
秋波。未央13 天前
Java Agent 开发 · Day 1 学习笔记(含作业完整标准答案)
java·笔记·学习
中屹指纹浏览器13 天前
2026指纹浏览器字体指纹、字体渲染偏差检测与全维度虚拟字体池搭建方案
经验分享·笔记