7

我有以下正则表达式模式和字符串:

var str="Is this all there is?";
var patt1=/is/gi;

我想从使用另一个is正则表达式中提取主表达式(没有修饰符),我们可以调用它作为参数。var patt1var patt2

这怎么可能在 vanilla JavaScript 中做到呢?

4

3 回答 3

11

是的,patt1是一个正则表达式对象。

您可以通过patt1.source.

> console.dir(patt1);
  /is/gi
    global: true
    ignoreCase: true
    lastIndex: 0
    multiline: false
    source: "is"
    __proto__: /(?:)/
于 2012-12-25T00:55:08.377 回答
9

不需要正则表达式。尝试这个:

> patt1.source
"is"
于 2012-12-25T00:55:17.517 回答
0

我想你需要的是这样的:

 var patt1=/[is]/gi;
 alert(patt1.test());
于 2012-12-25T01:20:42.010 回答