正则表达式lastIndex的理解

//
/**
**官方解释: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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值