search
HomeWeb Front-endJS TutorialA brief analysis of regular expressions in js
A brief analysis of regular expressions in jsJun 28, 2017 pm 01:30 PM
javascriptregularexpression

这篇文章主要介绍了深入浅析js中的正则表达式,需要的朋友可以参考下

阅读目录

  • 正则表达式的创建

  • 正则表达式中的特殊字符

  • \ (反斜杠)

  • ^

  • $

  • *,  +,  .(小数点)

  • ? (问号)

  • (x)

  • (?:x)

  • x(?=y), x(?!y), x|y

  • {n}, {n,m}:

  • [xyz], [^xyz]

  • 其他

  • 正则表达式标志

  • 正则表达式使用

很多时候多会被正则表达式搞的晕头转向,最近抽出时间对正则表达式进行了系统的学习,整理如下:

正则表达式的创建

两种方法,一种是直接写,由包含在斜杠之间的模式组成;另一种是调用RegExp对象构造函数

两种方法的创建代码如下:

// 直接创建
const regex1 = /ab+c/;
const regex2 = /^[a-zA-Z]+[0-9]*\W?_$/gi;
// 调用构造函数
const regex3 = new RegExp('ab+c');
const regex4 = new RegExp(/^[a-zA-Z]+[0-9]*\W?_$/, "gi");
const regex5 = new RegExp('^[a-zA-Z]+[0-9]*\W?_$', 'gi');

可以看出,调用RegExp构造函数创建正则表达式时,第一个参数可以是字符串,也可以是直接创建的正则表达式。

需要注意的是:RegExp实例继承的toLocaleString()和toString)()方法都会返回正则表达式的字面量,与创建正则表达式的方式无关

例如:

const ncname = '[a-zA-Z_][\\w\\-\\.]*';
const qnameCapture = '((?:' + ncname + '\\:)?' + ncname + ')';
const startTagOpen = new RegExp(&#39;^<&#39; + qnameCapture);
startTagOpen.toString();    // &#39;/^<((?:[a-zA-Z_][\w\-\.]*\:)?[a-zA-Z_][\w\-\.]*)/&#39;

正则表达式中的特殊字符

\ (反斜杠)

1.在非特殊字符前加反斜杠表示下一个字符是特殊的;

2.将其后的特殊字符转译为字面量;

注意:在使用RegExp构造函数时要将\转译,因为\在字符串里也是转译字符

^

1.匹配输入的开始;

2.在[]中的第一位时表示反向字符集

例子:

/^A/.exec(&#39;an A&#39;)    // null
/^A/.exec(&#39;An E&#39;)    // ["A", index: 0, input: "An E"]

匹配输入的结束

/t$/.exec(&#39;eater&#39;)    // null
/t$/.exec(&#39;eat&#39;)     // ["t", index: 2, input: "eat"]
*, +, .(小数点)

*:匹配前一个表达式0次或多次。等价于 {0,};

+:匹配前面一个表达式1次或者多次。等价于 {1,};

.:

匹配除换行符之外的任何单个字符;

? (问号)

1.匹配前面一个表达式0次或者1次。等价于 {0,1};

2.如果紧跟在任何量词 * + ? {} 的后面,将会使量词变为非贪婪的(匹配尽量少的字符),和缺省使用的贪婪模式正好相反;

3.运用于先行断言

例子:

/\d+/.exec(&#39;123abc&#39;)       // ["123", index: 0, input: "123abc"]
/\d+?/.exec(&#39;123abc&#39;)      // ["1", index: 0, input: "123abc"]

(x)

匹配 'x' 并且记住匹配项,括号表示捕获括号;

例子:

/(foo) (bar) \1 \2/.test(&#39;bar foo bar foo&#39;);  // false
/(bar) (foo) \1 \2/.test(&#39;bar foo bar foo&#39;);  // true
/(bar) (foo) \1 \2/.test(&#39;bar foo&#39;);      // false
/(bar) (foo) \1 \2/.test(&#39;bar foo foo bar&#39;);  // false
/(bar) (foo) \2 \1/.test(&#39;bar foo foo bar&#39;);  // true
&#39;bar foo bar foo&#39;.replace( /(bar) (foo)/, &#39;$2 $1&#39; );  // "foo bar bar foo"

模式 /(foo) (bar) \1 \2/ 中的 '(foo)' 和 '(bar)' 匹配并记住字符串 "foo bar foo bar" 中前两个单词。模式中的 \1 和 \2 匹配字符串的后两个单词。

注意:\1、\2、\n 是用在正则表达式的匹配环节,在正则表达式的替换环节,则要使用像 $1、$2、$n 这样的语法。例如,'bar foo'.replace( /(...) (...)/, '$2 $1' )。

(?:x)

匹配 'x' 但是不记住匹配项,这种叫作非捕获括号;

例子:

&#39;foo&#39;.match(/foo{1,2}/)        // ["foo", index: 0, input: "foo"]
&#39;foo&#39;.match(/(?:foo){1,2}/)      // ["foo", index: 0, input: "foo"]
&#39;foofoo&#39;.match(/(?:foo){1,2}/)     // ["foofoo", index: 0, input: "foofoo"]
&#39;foofoo&#39;.match(/foo{1,2}/)       // ["foo", index: 0, input: "foofoo"]

使用场景:示例表达式 /(?:foo){1,2}/。如果表达式是 /foo{1,2}/,{1,2}将只对 ‘foo' 的最后一个字符 'o‘ 生效。如果使用非捕获括号,则{1,2}会匹配整个 ‘foo' 单词。

x(?=y), x(?!y), x|y

x(?=y):匹配'x'仅仅当'x'后面跟着'y';

x(?!y):匹配'x'仅仅当'x'后面不跟着'y';

x|y: 匹配x或y

这两种匹配的结果都不包含y

例子:

&#39;JackSprat&#39;.match(/Jack(?=Sprat)/)      // ["Jack", index: 0, input: "JackSprat"]
&#39;JackWprat&#39;.match(/Jack(?=Sprat)/)      // null
&#39;JackWprat&#39;.match(/Jack(?=Sprat|Wprat)/)  // ["Jack", index: 0, input: "JackWprat"]
/\d+(?!\.)/.exec("3.141")    // ["141", index: 2, input: "3.141"]

{n}, {n,m}:

{n}:匹配了前面一个字符刚好发生了n次;

{n,m}:匹配前面的字符至少n次,最多m次。如果 n 或者 m 的值是0, 这个值被忽略;

例子:

  /a{2}/.exec(&#39;candy&#39;)     // null
  /a{2}/.exec(&#39;caandy&#39;)    // ["aa", index: 1, input: "caandy"]
  /a{2}/.exec(&#39;caaandy&#39;)    // ["aa", index: 1, input: "caaandy"]
  /a{1,3}/.exec(&#39;candy&#39;)    // ["a", index: 1, input: "candy"]
  /a{1,3}/.exec(&#39;caandy&#39;)   // ["aa", index: 1, input: "caandy"]
  /a{1,3}/.exec(&#39;caaandy&#39;)   // ["aaa", index: 1, input: "caaandy"]
  /a{1,3}/.exec(&#39;caaaandy&#39;)  // ["aaa", index: 1, input: "caaaandy"]

[xyz], [^xyz]

[xyz]:一个字符集合。匹配方括号的中任意字符;

[^xyz]:一个反向字符集。匹配任何没有包含在方括号中的字符;

这两种匹配都可以使用破折号(-)来指定一个字符范围,特殊符号在字符集中没有了特殊意义。

例:

function escapeRegExp(string){
  return string.replace(/([.*+?^=!:${}()|[\]\/\\])/g, "\\$&"); 
  //$&表示整个被匹配的字符串
}

例子中的.*+?^=!:${}()都表示字面量,并没有特殊意义。

其他

\b:匹配一个词的边界。一个匹配的词的边界并不包含在匹配的内容中。换句话说,一个匹配的词的边界的内容的长度是0;

\B: 匹配一个非单词边界;

例子:

  /\bm/.exec(&#39;moon&#39;)             // ["m", index: 0, input: "moon"]
  /\bm/.exec(&#39;san moon&#39;)           // ["m", index: 4, input: "san moon"]
  /oo\b/.exec(&#39;moon&#39;)             // null
  /\B../.exec(&#39;noonday&#39;)          // ["oo", index: 1, input: "noonday"]
  /y\B../.exec(&#39;possibly yesterday&#39;)    // /y\B../.exec(&#39;possibly yesterday&#39;)

\d:匹配一个数字,等价于[0-9];

\D:匹配一个非数字字符,等价于[^0-9];

\f:匹配一个换页符 (U+000C);

\n:匹配一个换行符 (U+000A);

\r:匹配一个回车符 (U+000D);

\s:匹配一个空白字符,包括空格、制表符、换页符和换行符,等价于[ \f\n\r\t\v\u00a0\u1680\u180e\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff];

\S:匹配一个非空白字符,等价于[^ \f\n\r\t\v\u00a0\u1680\u180e\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff];

\w:匹配一个单字字符(字母、数字或者下划线),等价于[A-Za-z0-9_];

\W:匹配一个非单字字符,等价于[^A-Za-z0-9_];

正则表达式标志

g:全局搜索;

i:不区分大小写;

m:多行搜索;

正则表达式使用

RegExp有exec()和test()方法;

exec匹配的结果为:匹配结果、捕获结果,index和input。

test匹配的结果为true或false,效率比exec要高。

String有match(),replace(),search(),split()方法;

match匹配的结果同RegExp的exec,replace根据正则表达式替换,search查找所以位置,split根据正则表达式分割字符串。

其中,当replace有function时,参数说明如下:

* 匹配项
* 记忆项(括号里面的项)
* ...
* 匹配的index
* input输入项

The above is the detailed content of A brief analysis of regular expressions in js. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft