当前位置:
首页 > temp > JavaScript教程 >
-
正则表达式整理
</head> <body> <h2>表达式全集</h2> <table class="wikitable"> <tbody> <tr> <th width="10%">字符</th> <th width="90%">描述</th> </tr> <tr> <th style="text-align:center;">\</th> <td>将下一个字符标记为一个特殊字符、或一个原义字符、或一个向后引用、或一个八进制转义符。例如,“<code>n</code>”匹配字符“<code>n</code>”。“<code>\n</code>”匹配一个换行符。串行“<code>\\</code>”匹配“<code>\</code>”而“<code></code>”。</td> </tr> <tr> <th style="text-align:center;">(?:pattern)</th> <td>匹配pattern但不获取匹配结果,也就是说这是一个非获取匹配,不进行存储供以后使用。这在使用或字符“<code>(|)</code>”来组合一个模式的各个部分是很有用。例如“<code>industr(?:y|ies)</code>”就是一个比“<code>industry|industries</code>”更简略的表达式。</td> </tr> <tr> <th style="text-align:center;">(?=pattern)</th> <td>正向肯定预查,在任何匹配pattern的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如,“<code>Windows(?=95|98|NT|2000)</code>”能匹配“<code>Windows2000</code>”中的“<code>Windows</code>”,但不能匹配“<code>Windows3.1</code>”中的“<code>Windows</code>”。预查不消耗字符,也就是说,在一个匹配发生后,在最后一次匹配之后立即开始下一次匹配的搜索,而不是从包含预查的字符之后开始。</td> </tr> <tr> <th style="text-align:center;">(?!pattern)</th> <td>正向否定预查,在任何不匹配pattern的字符串开始处匹配查找字符串。这是一个非获取匹配,也就是说,该匹配不需要获取供以后使用。例如“<code>Windows(?!95|98|NT|2000)</code>”能匹配“<code>Windows3.1</code>”中的“<code>Windows</code>”,但不能匹配“<code>Windows2000</code>”中的“<code>Windows</code>”。预查不消耗字符,也就是说,在一个匹配发生后,在最后一次匹配之后立即开始下一次匹配的搜索,而不是从包含预查的字符之后开始</td> </tr> <tr> <th style="text-align:center;">(?<=pattern)</th> <td>反向肯定预查,与正向肯定预查类拟,只是方向相反。例如,“<code>(?<=95|98|NT|2000)Windows</code>”能匹配“<code>2000Windows</code>”中的“<code>Windows</code>”,但不能匹配“<code>3.1Windows</code>”中的“<code>Windows</code>”。</td> </tr> <tr> <th style="text-align:center;">(?<!pattern)</th> <td>反向否定预查,与正向否定预查类拟,只是方向相反。例如“<code>(?<!95|98|NT|2000)Windows</code>”能匹配“<code>3.1Windows</code>”中的“<code>Windows</code>”,但不能匹配“<code>2000Windows</code>”中的“<code>Windows</code>”。</td> </tr> <tr> <th style="text-align:center;">x|y</th> <td>匹配x或y。例如,“<code>z|food</code>”能匹配“<code>z</code>”或“<code>food</code>”。“<code>(z|f)ood</code>”则匹配“<code>zood</code>”或“<code>food</code>”。</td> </tr> <tr> <th style="text-align:center;">[xyz]</th> <td>字符集合。匹配所包含的任意一个字符。例如,“<code>[abc]</code>”可以匹配“<code>plain</code>”中的“<code>a</code>”。</td> </tr> <tr> <th style="text-align:center;">[^xyz]</th> <td>负值字符集合。匹配未包含的任意字符。例如,“<code>[^abc]</code>”可以匹配“<code>plain</code>”中的“<code>p</code>”。</td> </tr> <tr> <th style="text-align:center;">[a-z]</th> <td>字符范围。匹配指定范围内的任意字符。例如,“<code>[a-z]</code>”可以匹配“<code>a</code>”到“<code>z</code>”范围内的任意小写字母字符。</td> </tr> <tr> <th style="text-align:center;">[^a-z]</th> <td>负值字符范围。匹配任何不在指定范围内的任意字符。例如,“<code>[^a-z]</code>”可以匹配任何不在“<code>a</code>”到“<code>z</code>”范围内的任意字符。</td> </tr> <tr> <th style="text-align:center;">\b</th> <td>匹配一个单词边界,也就是指单词和空格间的位置。例如,“<code>er\b</code>”可以匹配“<code>never</code>”中的“<code>er</code>”,但不能匹配“<code>verb</code>”中的“<code>er</code>”。</td> </tr> <tr> <th style="text-align:center;">\B</th> <td>匹配非单词边界。“<code>er\B</code>”能匹配“<code>verb</code>”中的“<code>er</code>”,但不能匹配“<code>never</code>”中的“<code>er</code>”。</td> </tr> <tr> <th style="text-align:center;">\cx</th> <td>匹配由x指明的控制字符。例如,\cM匹配一个Control-M或回车符。x的值必须为A-Z或a-z之一。否则,将c视为一个原义的“<code>c</code>”字符。</td> </tr> <tr> <th style="text-align:center;">\d</th> <td>匹配一个数字字符。等价于[0-9]。</td> </tr> <tr> <th style="text-align:center;">\D</th> <td>匹配一个非数字字符。等价于[^0-9]。</td> </tr> <tr> <th style="text-align:center;">\f</th> <td>匹配一个换页符。等价于\x0c和\cL。</td> </tr> <tr> <th style="text-align:center;">\n</th> <td>匹配一个换行符。等价于\x0a和\cJ。</td> </tr> <tr> <th style="text-align:center;">\r</th> <td>匹配一个回车符。等价于\x0d和\cM。</td> </tr> <tr> <th style="text-align:center;">\s</th> <td>匹配任何空白字符,包括空格、制表符、换页符等等。等价于[ \f\n\r\t\v]。</td> </tr> <tr> <th style="text-align:center;">\S</th> <td>匹配任何非空白字符。等价于[^ \f\n\r\t\v]。</td> </tr> <tr> <th style="text-align:center;">\t</th> <td>匹配一个制表符。等价于\x09和\cI。</td> </tr> <tr> <th style="text-align:center;">\v</th> <td>匹配一个垂直制表符。等价于\x0b和\cK。</td> </tr> <tr> <th style="text-align:center;">\w</th> <td>匹配包括下划线的任何单词字符。等价于“<code>[A-Za-z0-9_]</code>”。</td> </tr> <tr> <th style="text-align:center;">\W</th> <td>匹配任何非单词字符。等价于“<code>[^A-Za-z0-9_]</code>”。</td> </tr> <tr> <th style="text-align:center;">\x<span style="font-family:Times New Roman; font-style:italic;">n</span></th> <td>匹配<span style="font-family:Times New Roman; font-style:italic;">n</span>,其中<span style="font-family:Times New Roman; font-style:italic;">n</span>为十六进制转义值。十六进制转义值必须为确定的两个数字长。例如,“<code>\x41</code>”匹配“<code>A</code>”。“<code>\x041</code>”则等价于“<code>\x04&1</code>”。正则表达式中可以使用ASCII编码。.</td> </tr> <tr> <th style="text-align:center;">\<span style="font-family:Times New Roman; font-style:italic;">num</span></th> <td>匹配<span style="font-family:Times New Roman; font-style:italic;">num</span>,其中<span style="font-family:Times New Roman; font-style:italic;">num</span>是一个正整数。对所获取的匹配的引用。例如,“<code>(.)\1</code>”匹配两个连续的相同字符。</td> </tr> <tr> <th style="text-align:center;">\<span style="font-family:Times New Roman; font-style:italic;">n</span></th> <td>标识一个八进制转义值或一个向后引用。如果\<span style="font-family:Times New Roman; font-style:italic;">n</span>之前至少<span style="font-family:Times New Roman; font-style:italic;">n</span>个获取的子表达式,则<span style="font-family:Times New Roman; font-style:italic;">n</span>为向后引用。否则,如果<span style="font-family:Times New Roman; font-style:italic;">n</span>为八进制数字(0-7),则<span style="font-family:Times New Roman; font-style:italic;">n</span>为一个八进制转义值。</td> </tr> <tr> <th style="text-align:center;">\<span style="font-family:Times New Roman; font-style:italic;">nm</span></th> <td>标识一个八进制转义值或一个向后引用。如果\<span style="font-family:Times New Roman; font-style:italic;">nm</span>之前至少有<span style="font-family:Times New Roman; font-style:italic;">nm</span>个获得子表达式,则<span style="font-family:Times New Roman; font-style:italic;">nm</span>为向后引用。如果\<span style="font-family:Times New Roman; font-style:italic;">nm</span>之前至少有<span style="font-family:Times New Roman; font-style:italic;">n</span>个获取,则<span style="font-family:Times New Roman; font-style:italic;">n</span>为一个后跟文字<span style="font-family:Times New Roman; font-style:italic;">m</span>的向后引用。如果前面的条件都不满足,若<span style="font-family:Times New Roman; font-style:italic;">n</span>和<span style="font-family:Times New Roman; font-style:italic;">m</span>均为八进制数字(0-7),则\<span style="font-family:Times New Roman; font-style:italic;">nm</span>将匹配八进制转义值<span style="font-family:Times New Roman; font-style:italic;">nm</span>。</td> </tr> <tr> <th style="text-align:center;">\<span style="font-family:Times New Roman; font-style:italic;">nml</span></th> <td>如果<span style="font-family:Times New Roman; font-style:italic;">n</span>为八进制数字(0-3),且<span style="font-family:Times New Roman; font-style:italic;">m和l</span>均为八进制数字(0-7),则匹配八进制转义值<span style="font-family:Times New Roman; font-style:italic;">nm</span>l。</td> </tr> <tr> <th style="text-align:center;">\u<span style="font-family:Times New Roman; font-style:italic;">n</span></th> <td>匹配<span style="font-family:Times New Roman; font-style:italic;">n</span>,其中<span style="font-family:Times New Roman; font-style:italic;">n</span>是一个用四个十六进制数字表示的Unicode字符。例如,\u00A9匹配版权符号(©)。</td> </tr> </tbody> </table> <br /> <h2>常用正则表达式</h2> <table class="wikitable" width="100%"> <tr> <th width="10%">用户名</th> <td width="90%">/^[a-z0-9_-]{3,16}/</td> </tr> <tr> <th scope="row">十六进制值</th> <td>/^#?([a-f0-9]{6}|[a-f0-9]{3})/<br /> /^[a-z\d]+(\.[a-z\d]+)*@([\da-z](-[\da-z])?)+(\.{1,2}[a-z]+)+/</td> </tr> <tr> <th scope="row">IP 地址</th> <td>/^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)/</td> </tr> <tr> <th scope="row">HTML 标签</th> <td>/^<([a-z]+)([^<]+)*(?:>(.*)<\/\1>|\s+\/>)</td> </tr> <!-- <tr> <th scope="row"> </th> <td> </td> </tr>--> <tr> <th scope="row">Unicode编码中的汉字范围</th> <td>/^[\u2E80-\u9FFF]+$/</td> </tr> </table> </body> </html>
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数