为了账号安全,请及时绑定邮箱和手机立即绑定

js中为什么字符串中加了\n匹配就一直失败

js中为什么字符串中加了\n匹配就一直失败

慕姐4208626 2019-04-14 10:37:32
这样没结果vars='hi\nabc454def';console.log(/h.+(\d+)def/g.exec(s));这样是有结果的vars='hiabc454def';console.log(/h.+(\d+)def/g.exec(s));
查看完整描述

2 回答

?
PIPIONE

TA贡献1829条经验 获得超9个赞

vars='hi\nabc454def';
console.log(/h[\s\S]+(\d+)def/g.exec(s));//["hi↵abc454def","4",index:0,input:"hi↵abc454def"]
console.log(/h[\w\W]+(\d+)def/g.exec(s));//["hi↵abc454def","4",index:0,input:"hi↵abc454def"]
                            
查看完整回答
反对 回复 2019-04-14
  • 2 回答
  • 0 关注
  • 361 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信