体会String对象的match方法和new RegExp(re).exec(str)的区别

前端之家收集整理的这篇文章主要介绍了体会String对象的match方法和new RegExp(re).exec(str)的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var str ="cat matt daa bat"
var re = /at+/g;
var match = str.match(re);
console.log(match);
console.log(new RegExp(re).exec(str));

输出如下

[ 'at','att','at' ]
[ 'at',index: 1,input: 'cat matt daa bat' ]
[Finished in 0.5s]
原文链接:https://www.f2er.com/regex/359416.html

猜你在找的正则表达式相关文章