为什么

console.log(/a/ == /a/);
var regexp1 = /a/;
var regexp2 = /a/;
console.log(regexp1 == regexp2);
都返回false吗?

最佳答案

试试这个:

String(regexp1) === String(regexp2))

因为这两个是不同的对象,所以您会弄错。

关于javascript - 如何比较两个正则表达式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11032784/

10-11 23:41