码迷,mamicode.com
首页 > 其他好文 > 详细

十八、文本操作——正则表达式

时间:2020-04-06 23:25:30      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:分割   shu   ges   技术   auto   图片   表达   cat   tps   

元字符

技术图片
(1)查询文件中包含hello的行

user1@SC02ZRC4KMD6N ~ % cat test.txt 
hello testera
hello testerb
Hello testerc
user1@SC02ZRC4KMD6N ~ % grep hello test.txt
hello testera
hello testerb

(2).匹配除换行符外的任意单个字符

user1@SC02ZRC4KMD6N ~ % grep he... test.txt
hello testera
hello testerb

(3)*匹配任意一个跟在它前面的字符

user1@SC02ZRC4KMD6N ~ % grep he.* test.txt
hello testera
hello testerb

注意:前面介绍过通配符*,是可以单独使用的。这里的元字符*是不能单独使用的。
(4)$匹配结尾

user1@SC02ZRC4KMD6N ~ % grep he.*$ test.txt
hello testera
hello testerb

(5)^匹配开头

user1@SC02ZRC4KMD6N ~ % grep ^H test.txt
Hello testerc

(6)[]匹配方括号中的任意一个字符

user1@SC02ZRC4KMD6N ~ % grep ^[Hh] test.txt
hello testera
hello testerb
Hello testerc

(7)\转义后面的特殊字符
(8)正则匹配之后,操作匹配内容:以空格进行分割后取第一个字段

user1@SC02ZRC4KMD6N ~ % grep hello test.txt | cut -d " " -f 1
hello
hello

扩展元字符

技术图片

十八、文本操作——正则表达式

标签:分割   shu   ges   技术   auto   图片   表达   cat   tps   

原文地址:https://blog.51cto.com/12936780/2485137

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!