正则表达式 蔚落 2022-01-10 04:29 411阅读 0赞 摘抄自【[维基百科正则表达式][Link 1]】 ## 表达式全集 ## <table style="border:10px solid #a9a9a9;"> <tbody> <tr> <td style="text-align:center;"><span style="font-family:'courier new', courier;font-size:18pt;"><strong>字符</strong></span></td> <td style="text-align:center;"><span style="font-family:'courier new', courier;"><strong><span style="font-size:18pt;">描述</span></strong></span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">将下一个字符标记为一个特殊字符、或一个原义字符、或一个向后引用、或一个八进制转义符。例如,“<code>n</code>”匹配字符“<code>n</code>”。“<code>\n</code>”匹配一个换行符。串行“<code>\\</code>”匹配“<code>\</code>”而“\(”则匹配“(”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>^</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配输入字符串的开始位置。如果设置了RegExp对象的Multiline属性,^也匹配“<code>\n</code>”或“<code>\r</code>”之后的位置。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>$</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配输入字符串的结束位置。如果设置了RegExp对象的Multiline属性,$也匹配“<code>\n</code>”或“<code>\r</code>”之前的位置。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>*</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配前面的子表达式零次或多次。例如,zo*能匹配“<code>z</code>”以及“<code>zoo</code>”。*等价于{0,}。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>+</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配前面的子表达式一次或多次。例如,“<code>zo+</code>”能匹配“<code>zo</code>”以及“<code>zoo</code>”,但不能匹配“<code>z</code>”。+等价于{1,}。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>?</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配前面的子表达式零次或一次。例如,“<code>do(es)?</code>”可以匹配“<code>does</code>”或“<code>does</code>”中的“<code>do</code>”。?等价于{0,1}。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>{n}</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">n是一个非负整数。匹配确定的n次。例如,“<code>o{2}</code>”不能匹配“<code>Bob</code>”中的“<code>o</code>”,但是能匹配“<code>food</code>”中的两个o。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>{n,}</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">n是一个非负整数。至少匹配n次。例如,“<code>o{2,}</code>”不能匹配“<code>Bob</code>”中的“<code>o</code>”,但能匹配“<code>foooood</code>”中的所有o。“<code>o{1,}</code>”等价于“<code>o+</code>”。“<code>o{0,}</code>”则等价于“<code>o*</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>{n,m}</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">m和n均为非负整数,其中n<=m。最少匹配n次且最多匹配m次。例如,“<code>o{1,3}</code>”将匹配“<code>fooooood</code>”中的前三个o。“<code>o{0,1}</code>”等价于“<code>o?</code>”。请注意在逗号和两个数之间不能有空格。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>?</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">当该字符紧跟在任何一个其他限制符(*,+,?,{n},{n,},{n,m})后面时,匹配模式是非贪婪的。非贪婪模式尽可能少的匹配所搜索的字符串,而默认的贪婪模式则尽可能多的匹配所搜索的字符串。例如,对于字符串“<code>oooo</code>”,“<code>o+?</code>”将匹配单个“<code>o</code>”,而“<code>o+</code>”将匹配所有“<code>o</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>.</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配除“<code>\</code><code>n</code>”之外的任何单个字符。要匹配包括“<code>\</code><code>n</code>”在内的任何字符,请使用像“<code>(.|\n)</code>”的模式。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>(pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配pattern并获取这一匹配。所获取的匹配可以从产生的Matches集合得到,在VBScript中使用SubMatches集合,在JScript中则使用$0…$9属性。要匹配圆括号字符,请使用“<code>\(</code>”或“<code>\)</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>(?:pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配pattern但不获取匹配结果,也就是说这是一个非获取匹配,不进行存储供以后使用。这在使用或字符“<code>(|)</code>”来组合一个模式的各个部分是很有用。例如“<code>industr(?:y|ies)</code>”就是一个比“<code>industry|industries</code>”更简略的表达式。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>(?=pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">正向肯定预查,在任何匹配pattern的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如,“<code>Windows(?=95|98|NT|2000)</code>”能匹配“<code>Windows2000</code>”中的“<code>Windows</code>”,但不能匹配“<code>Windows3.1</code>”中的“<code>Windows</code>”。预查不消耗字符,也就是说,在一个匹配发生后,在最后一次匹配之后立即开始下一次匹配的搜索,而不是从包含预查的字符之后开始。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>(?!pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">正向否定预查,在任何不匹配pattern的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如“<code>Windows(?!95|98|NT|2000)</code>”能匹配“<code>Windows3.1</code>”中的“<code>Windows</code>”,但不能匹配“<code>Windows2000</code>”中的“<code>Windows</code>”。预查不消耗字符,也就是说,在一个匹配发生后,在最后一次匹配之后立即开始下一次匹配的搜索,而不是从包含预查的字符之后开始</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:16px;font-family:'courier new', courier;"><em><strong>(?<=pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">反向肯定预查,与正向肯定预查类似,只是方向相反。例如,“<code>(?<=95|98|NT|2000)Windows</code>”能匹配“<code>2000Windows</code>”中的“<code>Windows</code>”,但不能匹配“<code>3.1Windows</code>”中的“<code>Windows</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:16px;font-family:'courier new', courier;"><em><strong>(?<!pattern)</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">反向否定预查,与正向否定预查类似,只是方向相反。例如“<code>(?<!95|98|NT|2000)Windows</code>”能匹配“<code>3.1Windows</code>”中的“<code>Windows</code>”,但不能匹配“<code>2000Windows</code>”中的“<code>Windows</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>x|y</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配x或y。例如,“<code>z|food</code>”能匹配“<code>z</code>”或“<code>food</code>”。“<code>(z|f)ood</code>”则匹配“<code>zood</code>”或“<code>food</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>[xyz]</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">字符集合。匹配所包含的任意一个字符。例如,“<code>[abc]</code>”可以匹配“<code>plain</code>”中的“<code>a</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>[^xyz]</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">负值字符集合。匹配未包含的任意字符。例如,“<code>[^abc]</code>”可以匹配“<code>plain</code>”中的“<code>p</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>[a-z]</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">字符范围。匹配指定范围内的任意字符。例如,“<code>[a-z]</code>”可以匹配“<code>a</code>”到“<code>z</code>”范围内的任意小写字母字符。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>[^a-z]</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">负值字符范围。匹配任何不在指定范围内的任意字符。例如,“<code>[^a-z]</code>”可以匹配任何不在“<code>a</code>”到“<code>z</code>”范围内的任意字符。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\b</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个单词边界,也就是指单词和空格间的位置。例如,“<code>er\b</code>”可以匹配“<code>never</code>”中的“<code>er</code>”,但不能匹配“<code>verb</code>”中的“<code>er</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\B</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配非单词边界。“<code>er\B</code>”能匹配“<code>verb</code>”中的“<code>er</code>”,但不能匹配“<code>never</code>”中的“<code>er</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\cx</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配由x指明的控制字符。例如,\cM匹配一个Control-M或回车符。x的值必须为A-Z或a-z之一。否则,将c视为一个原义的“<code>c</code>”字符。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\d</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个数字字符。等价于[0-9]。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\D</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个非数字字符。等价于[^0-9]。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\f</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个换页符。等价于\x0c和\cL。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\n</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个换行符。等价于\x0a和\cJ。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\r</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个回车符。等价于\x0d和\cM。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\s</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配任何空白字符,包括空格、制表符、换页符等等。等价于[\f\n\r\t\v]。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\S</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配任何非空白字符。等价于[^\f\n\r\t\v]。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\t</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个制表符。等价于\x09和\cI。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\v</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配一个垂直制表符。等价于\x0b和\cK。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\w</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配包括下划线的任何单词字符。等价于“<code>[A-Za-z0-9_]</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\W</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配任何非单词字符。等价于“<code>[^A-Za-z0-9_]</code>”。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\xn</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配n,其中n为十六进制转义值。十六进制转义值必须为确定的两个数字长。例如,“<code>\x41</code>”匹配“<code>A</code>”。“<code>\x041</code>”则等价于“<code>\x04&1</code>”。正则表达式中可以使用ASCII编码。.</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\num</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配num,其中num是一个正整数。对所获取的匹配的引用。例如,“<code>(.)\1</code>”匹配两个连续的相同字符。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\n</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">标识一个八进制转义值或一个向后引用。如果\n之前至少n个获取的子表达式,则n为向后引用。否则,如果n为八进制数字(0-7),则n为一个八进制转义值。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\nm</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">标识一个八进制转义值或一个向后引用。如果\nm之前至少有nm个获得子表达式,则nm为向后引用。如果\nm之前至少有n个获取,则n为一个后跟文字m的向后引用。如果前面的条件都不满足,若n和m均为八进制数字(0-7),则\nm将匹配八进制转义值nm。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\nml</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">如果n为八进制数字(0-3),且m和l均为八进制数字(0-7),则匹配八进制转义值nml。</span></td> </tr> <tr> <td style="text-align:center;"><span style="font-size:14pt;font-family:'courier new', courier;"><em><strong>\un</strong></em></span></td> <td><span style="font-size:16px;font-family:'courier new', courier;">匹配n,其中n是一个用四个十六进制数字表示的Unicode字符。例如,\u00A9匹配版权符号(©)。</span></td> </tr> </tbody> </table> 【**备忘几个链接**】 \-->\[[正则验证器][Link 2]\] \-->\[[各种不同风格的正则表达式][Link 3]\] \-->\[[正则表达式30分钟入门][30]\] \-->\[[我爱正则表达式][Link 4]\] 转载于:https://www.cnblogs.com/XBin/archive/2013/01/16/2863352.html [Link 1]: http://zh.wikipedia.org/wiki/%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F [Link 2]: http://mengzhuo.org/regex/ [Link 3]: http://www.greenend.org.uk/rjk/tech/regexp.html [30]: http://deerchao.net/tutorials/regex/regex.htm [Link 4]: http://iregex.org/
相关 【正则表达式】正则表达式及其应用 正则表达式 1. 什么是正则表达式? 百度百科提供的概念是这样的:正则表达式,又称规则表达式\\。\\(英语:Regular Expression,在代码中常简写为 旧城等待,/ 2022年09月15日 06:08/ 0 赞/ 554 阅读
相关 正则表达式 看一遍就完全搞定的正则表达式教程 正则表达式(regular expression)就是用一个“字符串”来描述一个特征,然后去验证另一个“字符串”是否符合这个特征。比如 墨蓝/ 2022年06月01日 11:59/ 0 赞/ 299 阅读
相关 正则表达式 > 概念:是指用来描述或者匹配一系列符合某个语法规则的字符的单个字符串,其实就是一种规则。有自己的特殊应用。 > String类中有一个 String.mat 川长思鸟来/ 2022年05月19日 08:15/ 0 赞/ 280 阅读
相关 正则表达式 正则表达式简介: 正则表达式,又称规则表达式,正则表达式是对字符串(包括普通字符(例如,[a-Z]之间的字母)和特殊字符(称为“元字符”))操作的一 种 约定不等于承诺〃/ 2022年04月18日 03:22/ 0 赞/ 371 阅读
相关 正则表达式 正则表达式解析 \ 将下一个字符标记为一个特殊字符、或一个原义字符、或一个向后引用、或一个八进制转义符。 例如,“n”匹配字符“n”。“\n”匹配一个换行符。 待我称王封你为后i/ 2022年04月17日 03:18/ 0 赞/ 315 阅读
相关 正则表达式 正则表达式 在线正则表达式测试:[http://tool.oschina.net/regex/][http_tool.oschina.net_regex] 正则表达式基础 ╰半夏微凉°/ 2022年04月03日 09:38/ 0 赞/ 366 阅读
相关 正则表达式 [在线正则表达式测试工具][Link 1] [深入理解正则表达式][Link 2] (1)var reg = /\d/; //先看reg匹配到的字符串只能是单个数字 我不是女神ヾ/ 2022年01月20日 06:11/ 0 赞/ 352 阅读
相关 正则表达式 摘抄自【[维基百科正则表达式][Link 1]】 表达式全集 <table style="border:10px solid a9a9a9;"> <tbody> 蔚落/ 2022年01月10日 04:29/ 0 赞/ 412 阅读
相关 正则表达式 package day_34_正则表达式; import java.util.Arrays; / 正则表达式:就是一个模 末蓝、/ 2021年10月26日 13:18/ 0 赞/ 504 阅读
还没有评论,来说两句吧...