正则表达式中match和exec, test
Posted roxxane
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则表达式中match和exec, test相关的知识,希望对你有一定的参考价值。
// test // 判断字符串是否满足某个匹配模式,满足的话,返回true,否则,返回false let reg = /^a/ let str = ‘123abc‘ console.log(reg.test(str)) //false // exec // 用于检索字符串中的正则表达式的匹配。该函数返回一个数组,其中存放匹配的结果 // 如果未找到匹配,则返回值为null let reg1 = /^a/ let str1 = ‘abc123abc‘ console.log(reg1.exec(str1)) //[ ‘a‘, index: 0, input: ‘abc123abc‘, groups: undefined ] // match // 也是用于匹配,分全局匹配和非全局匹配 // 非全局 let str3 = ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘ let result1 = str3.match(/d+/) console.log(result1) // 结果 // [ // ‘186‘, // index: 13, // input: ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘, // groups: undefined // ] // 全局 let str4 = ‘Today is the 186th day of 2018,I must finish these 2 projects within 21 days.‘ let result2 = str3.match(/d+/g) console.log(result2) // 结果 [ ‘186‘, ‘2018‘, ‘2‘, ‘21‘ ]
以上是关于正则表达式中match和exec, test的主要内容,如果未能解决你的问题,请参考以下文章
JS中正则匹配的三个方法match exec test的用法
正则表达式中的match,test,exec,search的返回值
js正则表达式的match test exec replace函数
javascript正则表达式总结(test|match|search|replace|split|exec)