码迷,mamicode.com
首页 > 系统相关 > 详细

linux正则表达式(一)

时间:2017-07-25 10:28:14      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:包含   linux   括号   world   字符串   正则表达   正则表达式   使用   一个   

  正则表达式是一种字符串模式匹配,使用灵活、功能强大,使用简单的方式对字符串进行控制。

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正则表达式(一)

标签:包含   linux   括号   world   字符串   正则表达   正则表达式   使用   一个   

原文地址:http://www.cnblogs.com/lzeffort/p/7231884.html

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