const re = /ab+c/;
const re = new RegExp("ab+c");
如果要使用第二种方式
需要改变flavor和delimiters
RegExp比//需要额外的一次转义
可以点击Code Generator查看