RegExp.prototype.sticky
优质
小牛编辑
125浏览
2023-12-01
lastIndex是RegExp对象的读/写属性。 对于设置了“g”属性的正则表达式,它包含一个整数,该整数指定紧跟RegExp.exec()和RegExp.test()方法找到的最后一个匹配之后的字符位置。 这些方法使用此属性作为下一次搜索的起点。
此属性允许您重复调用这些方法,循环遍历字符串中的所有匹配项,并且仅在设置了“g”修饰符时才起作用。
此属性是可读/写的,因此您可以随时设置它以指定目标字符串中的下一个搜索应该开始的位置。 exec()和test()在找不到匹配项(或其他匹配项)时自动将lastIndex重置为0。
语法 (Syntax)
RegExpObject.lastIndex
返回值 (Return Value)
返回一个整数,指定紧跟在最后一个匹配项后的字符位置。
例子 (Example)
var str = "Javascript is an interesting scripting language";
var re = new RegExp( "script", "g" );
re.test(str);
console.log("Test 1 - Current Index: " + re.lastIndex);
re.test(str);
console.log("Test 2 - Current Index: " + re.lastIndex)
输出 (Output)
Test 1 - Current Index: 10
Test 2 - Current Index: 35