var str="Is this all there is?"; var patt1=/is/gi;
我想使用另一个正则表达式从var patt1中提取主表达式(没有修饰符),我们可以将var patt2称为参数.
如何在vanilla JavaScript中做到这一点?
您可以通过patt1.source获取正则表达式源代码.
> console.dir(patt1); /is/gi global: true ignoreCase: true lastIndex: 0 multiline: false source: "is" __proto__: /(?:)/