猿问

JS正则使用正则表达式字面量和使用 RegExp 构造函数创建的正则表达式有什么不一样?

下面的内容摘自某书

使用正则表达式字面量和使用 RegExp 构造函数创建的正则表达式不一样。在 ECMAScript 3 中, 正则表达式字面量始终会共享同一个RegExp实例,而使用构造函数创建的每一个新RegExp实例都是一个新实例。来看下面的例子。


var re = null,

        i;

for (i=0; i < 10; i++){

    re = /cat/g;

    re.test("catastrophe");

}

for (i=0; i < 10; i++){

    re = new RegExp("cat", "g");

    re.test("catastrophe");

}

在第一个循环中,即使是循环体中指定的,但实际上只为 /cat/ 创建了一个 RegExp 实例。由于实例属性不会重置,所以在循环中再次调用 test() 方法会失败。这是因为第一次调用 test() 找到了"cat",但第二次调用是从索引为 3 的字符(上一次匹配的末尾)开始的,所以就找不到它了。由于会测试到字符串末尾,所以下一次再调用 test()就又从开头开始了。


第二个循环使用 RegExp 构造函数在每次循环中创建正则表达式。因为每次迭代都会创建一个新的 RegExp 实例,所以每次调用 test()都会返回 true。


没能看懂,我测试了下两种方式来测试,都是返回了10次 true 啊

如果放开ES5标准不说,假如是ES3的话是不是说第一种情况是5次,第二种情况是10次呢?


var re = null,

    b  = 0,

    c  = 0,

    tmp,

    i;

for (i=0; i < 10; i++){

    re = /cat/g;

    tmp = re.test("catastrophe");

    console.log(tmp);

    if(tmp){

        b++ ;

    }

}

for (i=0; i < 10; i++){

    re = new RegExp("cat", "g");

    tmp = re.test("catastrophe");

    console.log(tmp);

    if(tmp){

        c++;

    }

}

console.log(b,c);


繁星coding
浏览 743回答 2
2回答

隔江千里

因为现在要看ECMA5.1了,标准中明确指出A regular expression literal is an input element that is converted to a RegExp object (see 15.10) each time the literal is evaluated. Two regular expression literals in a program evaluate to regular expression objects that never compare as === to each other even if the two literals' contents are identical.正则表达式字面量每次被计算时都会被转换成一个正则对象,即使内容一致,这些对象也并不相同
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答