js中为什么字符串中加了\n匹配就一直失败
这样没结果
var s = 'hi\nabc454def';
console.log(/h.+(\d+)def/g.exec(s));
这样是有结果的
var s = 'hiabc454def';
console.log(/h.+(\d+)def/g.exec(s));
tyrion
9 years, 2 months ago