javascript正则表达式修饰符之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()的输出结果会有差别。下面的解释摘抄自这篇博客:

在创建正则表达式对象时如果使用了“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)); //输出ture console.log(re.lastIndex); //输出4 console.log(re.test(str)); //输出true console.log(re.lastIndex); //输出14 console.log(re.test(str)); //输出ture console.log(re.lastIndex); //输出24 console.log(re.test(str)); //输出false console.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);//0var 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,则第一次执行也返回第一个匹配,再执行返回第二个匹配,依次类推。var str = "012345678901234567890123456789"; var re = /123/; var globalre = /123/g;//非全局匹配var resultArray = re.exec(str);console.log(resultArray[0]);//输出123console.log(resultArray.index);//输出1console.log(globalre.lastIndex);//输出0var resultArray = re.exec(str);console.log(resultArray[0]);//输出123console.log(resultArray.index);//输出1console.log(globalre.lastIndex);//输出0//全局匹配var resultArray = globalre.exec(str);console.log(resultArray[0]);//输出123console.log(resultArray.index);//输出1console.log(globalre.lastIndex);//输出4var resultArray = globalre.exec(str);console.log(resultArray[0]);//输出123console.log(resultArray.index);//输出11console.log(globalre.lastIndex);//输出14

当使用/g匹配模式的时候,我们可以通过循环,获取所有的匹配项。var str = "012345678901234567890123456789"; var globalre = /123/g;//循环遍历,获取所有匹配var result = null;while ((result = globalre.exec(str)) != null){console.log(result[0]);console.log(globalre.lastIndex);}

勇于接受自己的不完美,认清自己不足的地方,

javascript正则表达式修饰符之global(/g)的使用

相关文章:

你感兴趣的文章:

标签云: