//
/**
**官方解释:The lastIndex is a read/write integer property of regular expression instances that specifies the index at which to start the next match.(lastIndex是正则表达式实例读/写的整数属性,指定开始下一个匹配的索引。)
**
**正则的实例属性 lastIndex,初始情况下都是从零开始,当第二次调用这个实例匹配字符串时是从
**上一次匹配完成位置的下一个位置开始。(当然正则实例是开启全局的)
**1.如果上次匹配到了一个位置大于等于此次匹配的字符串的长度,那么此次匹配返回false或空数组
**2.如果上次没有匹配到,那么此次匹配还是从零开始
**
*/
var reg = new RegExp(/\s(fo)+/,'g');
console.log(reg.lastIndex); // 0
var bol3 = reg.test('i like play afootball,fo'); //输出 false
console.log(reg.lastIndex); // 0
var bol1 = reg.test('i like play afootball, fo'); //输出true
console.log(reg.lastIndex); //25
var arr = reg.exec('i like play fo football'); //['fo','fo']
console.log(reg.lastIndex); //0
var bol2 = reg.test('i like play football,fo'); //输出false
console.log(reg.lastIndex); //14
console.log(bol3); //false
console.log(arr); //null
console.log(bol1); //true
console.log(bol2); //true
正则表达式lastIndex的理解
最新推荐文章于 2023-12-18 13:08:41 发布