标签:元字符 new compute bsp 多次 过滤 笔记 att roman
^ 只匹配行首
$ 只匹配行尾
* 一个单字符后紧跟*,匹配0个或多个此单字符
[] 匹配[]内字符。可以是一个单字符,也可以是字符序列,用-表示范围
如用[1-5]代替[12345]
\ 用来屏蔽一个元字符的特殊含义。如$ . ‘ " * ^ | ( ) \ + ?
. 匹配任意单字符
pattern\{n\} 用来匹配前面pattern出现次数。n为次数
pattern\{n,\}m 含义同上,但次数最少为n
pattern\{n,m\} 含义同上,但pattern出现次数在n与m之间
例:
^$ 匹配一个空行
^.$ 匹配只包含一个字符的行
compu*t 匹配字符u 0次或多次,这个可匹配computer,
A\{2\}B 匹配字母A出现两次,并以B结尾
A\{2,4\}B 匹配字母A出现2到4次之间
标签:元字符 new compute bsp 多次 过滤 笔记 att roman
原文地址:http://www.cnblogs.com/m2492565210/p/7465003.html