效果如何RegExp.exec
?
当给定一个字符串时,RegExp.exec
将:
如果模式是全局的(有g
标志),那么它将使用实例中的lastIndex
属性并从指示的索引中搜索模式的字符串。这意味着不知道输入字符串。它只会以索引为起点并搜索字符串,无论字符串是否与之前的调用相同。RegExp
RegExp.exec
如果找到匹配项,它将返回一个包含匹配项的数组,并相应地更新RegExp
实例中的字段,如参考中所示。lastIndex
将更新开始下一场比赛的位置。
如果没有找到匹配,它会将 重置lastIndex
为 0,并null
作为调用的结果返回RegExp.exec
。
如果模式不是全局的(g
未设置标志),lastIndex
则属性将被忽略。lastIndex
无论属性如何,匹配始终从索引 0 开始。
要非常清楚:
RegExp
实例将存储开始下一个匹配的位置 ( lastIndex
)、标志的状态 ( global
, multiline
, ignorecase
) 和模式的文本 ( source
)。
的返回值RegExp.exec
是一个存储匹配结果的数组。该数组还具有input
存储输入字符串的index
属性和存储匹配的基于 0 的索引的属性。
对象的RegExp.$_
属性RegExp
RegExp.$_
不推荐使用RegExp
object 上的property 和其他几个类似的属性。只需通过. 等效于由 .返回的数组中附加的属性。RegExp.exec
$_
input
RegExp.exec
var arr = pattern.exec(inputString);
if (arr !== null) {
// Print to the console the whole input string that has a match
console.log(arr.input);
}
由于这些属性在RegExp
对象上,因此当您使用多个RegExp
实例时会非常混乱 - 您不知道这些属性是来自当前执行还是先前执行,例如在这种情况下。
从您得到的行为来看,似乎RegExp.$_
在RegExp.exec
找到匹配时被修改,而在匹配失败时不会被修改(保留以前的值)RegExp.exec
。
行为说明
请阅读上面的部分以了解其工作原理的全貌。
我在原始代码中添加了一些关于幕后发生的事情的评论:
全局标志
var str="I am really puzzled up";
var str1="Being puzzled is first step towards understanding";
// Global pattern
var patt=new RegExp("puzzled","gi");
// From index 0 of str, found match at index 12
// RegExp.$_ is set to current input - str
// patt.lastIndex is set to index 19
patt.exec(str);
alert(RegExp.$_); //I am really puzzled up *[1]
// From index 19 of str1, can't find any match
// Since no match is found, RegExp.$_'s value is not changed
// patt.lastIndex is set to 0
patt.exec(str1);
alert(RegExp.$_); //I am really puzzled up *[2]
// Found index 0 of str1, found match at index 6
// RegExp.$_ is set to current input - str1
// patt.lastIndex is set to 13
patt.exec(str1);
alert(RegExp.$_); //Being puzzled is first step towards understanding *[3]
没有全局标志
var str="I am really puzzled up";
var str1="Being puzzled is first step towards understanding";
// Not global
var patt=new RegExp("puzzled","i");
// From index 0 of str, found match at index 12
// RegExp.$_ is set to current input - str
patt.exec(str);
alert(RegExp.$_); //I am really puzzled up
// From index 0 of str1, found match at index 6
// RegExp.$_ is set to current input - str1
patt.exec(str1);
alert(RegExp.$_); //Being puzzled is first step towards understanding