二、深入探索 grep 高级查找模式
1、如何检索一个具有以 ‘-‘ 开头的的模式?
使用 -e 选项搜索所有匹配 ‘–test–‘ 的结果。grep 会尝试把 ‘–test–‘ 作为一个选项解析:
grep -e '--test--' FILENAME
2、如何在grep中使用 OR 的逻辑运算 ?
grep -E 'word1|word2' FILENAME
### OR ###
egrep 'word1|word2' FILENAME
或者可以这样做
grep 'word1\|word2' FILENAME
3、如何在grep中使用 AND 的逻辑运算 ?
按照下面的语法显示所有包含了单词 ‘word1′ 和 ‘word2′ 的结果:
grep 'word1' FILENAME | grep 'word2'
或者可以这样:
grep 'foo.*bar\|word3.*word4' FILENAME
4、如何测试序列?
你可以使用下面的语法测试一个字符在序列中的重复的次数:
{N}
{N,}
{min,max}
匹配包含两个字母 v 的字符串结果:
egrep "v{2}" FILENAME
下面的例子中将检索文件内包含 “col” 和 “cool” 的字符串结果:
egrep 'co{1,2}l' FILENAME
下面的例子中将匹配至少含有3个字母 c 的结果:
egrep 'c{3,}' FILENAME
下面的示例将匹配 “91-1234567890″ 格式的手机号码(即 “两位数字-十位数字”)
grep "[[:digit:]]\{2\}[ -]\?[[:digit:]]\{10\}" FILENAME
5、如何使 grep 的输出结果高亮标注?
使用下面例子的语法:
grep --color regex FILENAME
6、如何使 grep 的输出只显示匹配的部分而不是整行?
使用下面例子的语法:
grep -o regex FILENAME
三、正则表达式操作符总结
正则表达式 操作符 |
含义 |
. | 匹配任何单个字符。 |
? | 匹配前一个字符0次或1次。 |
* | 匹配前一个字符≥0次。 |
+ | 匹配前一个字符≥1次。 |
{N} | 匹配前一个字符N次。 |
{N,} | 匹配前一个字符≥m次。 |
{N,M} | 匹配前一个字符 N 到 M次。 |
– | 如果在列表中的某个列表或某个范围内的结束点,表示该范围。 |
^ | 开始标记,表示在开始位置匹配一个空字符串。也表示不在列表的范围内的字符。 |
$ | 结束标记。匹配一个空的字符串。 |
\b | 单词锁定符。在一个单词的边缘位置匹配空字符串。 |
\B | 在一个单词的非边缘位置匹配空字符串。 |
\< | 匹配单词开始的空字符串。 |
\> | 匹配单词结尾的空字符串。 |
egrep 即 grep -E ,它把模式作为一个扩展的正则表达式解释。grep 帮助文档中这样定义:
In basic regular expressions the meta-characters ?, +, {, |, (, and ) lose their special meaning; instead use the backslashed versions \?, \+, \{, \|, \(, and \). Traditional egrep did not support the { meta-character, and some egrep implementations support \{ instead, so portable scripts should avoid { in grep -E patterns and should use [{] to match a literal {. GNU grep -E attempts to support traditional usage by assuming that { is not special if it would be the start of an invalid interval specification. For example, the command grep -E '{1' searches for the two-character string {1 instead of reporting a syntax error in the regular expression. POSIX.2 allows this behavior as an extension, but portable scripts should avoid it.
2015职称计算机考试书PowerPoint2007中 .. 定价:¥45 优惠价:¥42 更多书籍 | |
2015年全国职称计算机考试教材(2007模 .. 定价:¥225 优惠价:¥213 更多书籍 |