前端之家收集整理的这篇文章主要介绍了
如何在javascript中运行正则表达式的正则表达式?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下正则表达式模式和字符串:
var str="Is this all there is?";
var patt1=/is/gi;
我想使用另一个正则表达式从var patt1中提取主表达式(没有修饰符),我们可以将var patt2称为参数.
如何在vanilla JavaScript中做到这一点?
是的,patt1是一个正则表达式对象.
您可以通过patt1.source获取正则表达式源代码.
> console.dir(patt1);
/is/gi
global: true
ignoreCase: true
lastIndex: 0
multiline: false
source: "is"
__proto__: /(?:)/
原文链接:https://www.f2er.com/js/158690.html