本文实例讲述了JS正则表达式修饰符global(/g)用法。分享给大家供大家参考,具体如下:
/g修饰符代表全局匹配,查找所有匹配而非在找到第一个匹配后停止。先看一段经典代码:
var str = "123#abc";var noglobal = /abc/i;//非全局匹配模式console.log(re.test(str)); //输出tureconsole.log(re.test(str)); //输出tureconsole.log(re.test(str)); //输出tureconsole.log(re.test(str)); //输出turevar re = /abc/ig;//全局匹配console.log(re.test(str)); //输出tureconsole.log(re.test(str)); //输出falseconsole.log(re.test(str)); //输出tureconsole.log(re.test(str)); //输出false
可以看到:当使用/g模式的时候,多次执行RegExp.test()的输出结果会有差别。下面的解释摘抄自这篇文章《Javascript中正则表达式的全局匹配模式分析》:
在创建正则表达式对象时如果使用了“g”标识符或者设置它了的?global属性值为ture时,那么新创建的正则表达式对象将使用模式对要将要匹配的字符串进行全局匹配。在全局匹配模式下可以对指定要查找的字符串执行多次匹配。每次匹配使用当前正则对象的lastIndex属性的值作为在目标字符串中开 始查找的起始位置。lastIndex属性的初始值为0,找到匹配的项后lastIndex的值被重置为匹配内容的下一个字符在字符串中的位置索引,用来标识下次执行匹配时开始查找的位置。如果找不到匹配的项lastIndex的值会被设置为0。当没有设置正则对象的全局匹配标志时lastIndex属性的值始终为0,每次执行匹配仅查找字符串中第一个匹配的项。
可以通过下面这段代码验证lastIndex在/g模式下的表现:
var str = "012345678901234567890123456789";var re = /123/g;console.log(re.lastIndex); //输出0,正则表达式刚开始创建console.log(re.test(str)); //输出tureconsole.log(re.lastIndex); //输出4console.log(re.test(str)); //输出trueconsole.log(re.lastIndex); //输出14console.log(re.test(str)); //输出tureconsole.log(re.lastIndex); //输出24console.log(re.test(str)); //输出falseconsole.log(re.lastIndex); //输出0,没有找到匹配项被重置
上面我们看到了/g模式对于RegExp.test()函数的影响,现在我们看下对RegExp.exec()函数的影响。RegExp.exec()返回一个数组,其中存放匹配的结果。如果未找到匹配,则返回值为 null。
var str = "012345678901234567890123456789";var re = /abc/;//exec没有找到匹配console.log(re.exec(str));//nullconsole.log(re.lastIndex);//0
var str = "012345678901234567890123456789";var re = /123/;var resultArray = re.exec(str);console.log(resultArray[0]);//匹配结果123console.log(resultArray.input);//目标字符串strconsole.log(resultArray.index);//匹配结果在原始字符串str中的索引
对于RegExp.exec方法,不加入g,则只返回第一个匹配,无论执行多少次均是如此;如果加入g,则第一次执行也返回第一个匹配,再执行返回第二个匹配,依次类推。
新闻热点
疑难解答
图片精选