首页 > 代码库 > linux正则表达式(一)
linux正则表达式(一)
正则表达式是一种字符串模式匹配,使用灵活、功能强大,使用简单的方式对字符串进行控制。
1.使用grep进行字符串匹配
测试文本 1.txt
helloworld haa 12345678 !@#$%^&*( 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正则表达式(一)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。