Shell常用正则表达式

Posted Linux公社

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell常用正则表达式相关的知识,希望对你有一定的参考价值。

^ 行首 
$  行尾   
.  除了换行符以外的任意单个字符   
*  前导字符的零个或多个   
.*  所有字符   
[]  字符组内的任一字符 
[^] 对字符组内的每个字符取反(不匹配字符组内的每个字符) 
^[^]    非字符组内的字符开头的行   
[a-z] 小写字母 
[A-Z] 大写字母 
[a-Z] 小写和大写字母   
[0-9] 数字 
\<  单词头 单词一般以空格或特殊字符做分隔,连续的字符串被当做单词   
\>  单词尾

扩展正则 sed 加 -r 参数 或转义 
grep 加 -E 或 egrep 或转义 
AWK 直接支持 但不包含{n,m} 
可以使用--posix支持   
[root@linuxidc ~]#  awk '/ro{1,3}/{print}' /etc/passwd   
[root@linuxidc ~]#  awk --posix '/ro{1,3}/{print}' /etc/passwd

sed -n '/roo\?/p' /etc/passwd     
sed -rn '/roo?/p' /etc/passwd     
? 前导字符零个或一个       
+ 前导字符一个或多个       
abc|def abc或def       
a(bc|de)f abcf 或 adef     
x\{m\} x出现m次   
x\{m,\} x出现m次至多次(至少m次)   
x\{m,n\} x出现m次至n次

posix定义的字符分类

[:alnum:] Alphanumeric characters.
匹配范围为 [a-zA-Z0-9]
[:alpha:] Alphabetic characters.
匹配范围为 [a-zA-Z]
[:blank:] Space or tab characters.
匹配范围为 空格和TAB键
[:cntrl:] Control characters.
匹配控制键 例如 ^M 要按 ctrl+v 再按回车 才能输出
[:digit:] Numeric characters.
匹配所有数字 [0-9]
[:graph:] Characters that are both printable and visible. (A space is print-
able, but not visible, while an a is both.)
匹配所有可见字符 但不包含空格和TAB 就是你在文本文档中按键盘上能用眼睛观察到的所有符号
[:lower:] Lower-case alphabetic characters.
小写 [a-z]
[:print:] Printable characters (characters that are not control characters.)
匹配所有可见字符 包括空格和TAB
能打印到纸上的所有符号
[:punct:] Punctuation characters (characters that are not letter, digits, con-
trol characters, or space characters).
特殊输入符号 +-=)(*&^%$#@!~`|\"'{}[]:;?/>.<,
注意它不包含空格和TAB
这个集合不等于^[a-zA-Z0-9]
[:space:] Space characters (such as space, tab, and formfeed, to name a few).

[:upper:] Upper-case alphabetic characters.
大写 [A-Z]
[:xdigit:] Characters that are hexadecimal digits.
16进制数 [0-f]

使用方法:

[root@linuxidc ~]# grep --color '[[:alnum:]]' /etc/passwd

元字符及其在正则表达式上下文中的行为:

利用正则表达式限制网页表单里的文本框输入内容:

用正则表达式限制只能输入中文:onkeyup=”value=value.replace(/[^u4E00-u9FA5]/g,”)” onbeforepaste=”clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^u4E00-u9FA5]/g,”))”

用正则表达式限制只能输入全角字符: onkeyup=”value=value.replace(/[^uFF00-uFFFF]/g,”)” onbeforepaste=”clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^uFF00-uFFFF]/g,”))”

用正则表达式限制只能输入数字:onkeyup=”value=value.replace(/[^d]/g,”) “onbeforepaste=”clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^d]/g,”))”

用正则表达式限制只能输入数字和英文:onkeyup=”value=value.replace(/[W]/g,”) “onbeforepaste=”clipboardData.setData(’text’,clipboardData.getData(’text’).replace(/[^d]/g,”))”

常用正则表达式

以上是关于Shell常用正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

shell常用正则表达式

Shell常用正则表达式

shell 正则表达式

Shell常用正则表达式

Shell常用通配符及正则表达式符号

Shell基础 -- 基本正则表达式