正则的补充

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

</body>
<script>
     var str = "123hfgh789hgf25ghf456hg3.14f";
             //
     var reg = /\d+/g;
//     ES6添加了y修饰符和g类似,不过y 修饰符在下次匹配的时候需要紧跟上次匹配成功之后的结果匹配,而g则是全局匹配;
//     exec() 方法在匹配全局对象的时候, 多次匹配会在上一次结束的地方继续匹配;

     console.log(str.match(reg));//["123", "789", "25", "456", "3", "14"]
      console.log(reg.exec(str));//["123", index: 0, input: "123hfgh789hgf25ghf456hg3.14f", groups: undefined] 每次只打印一个值,但包括很多信息。
     reg.lastIndex = 0;
      console.log(reg.exec(str));//123..(很多信息).
     reg.lastIndex = 1;
     console.log(reg.exec(str));//23...

     reg.lastIndex = 3;
     console.log(reg.exec(str));//789...
     console.log(reg.lastIndex)//10
     reg.lastIndex = 10;
     console.log(reg.exec(str));//25
     console.log(reg.lastIndex)//15
     //    ........
     reg.lastIndex=0;
     console.log(reg.exec(str));//123.
     console.log(reg.lastIndex) //3,最后一个值在第几位?

     var s = 'aaa_aa_a’;
     var r1 = /a+/g;
     var r2 = /a+/y;

     r1.exec(s) // ["aaa”]
     r2.exec(s) // ["aaa”]
     r1.exec(s) // ["aa”]
     r2.exec(s) // null

</script>
</html>

 

转载于:https://www.cnblogs.com/hy96/p/11434944.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值