var str = "\abc";// 字符串是获取到的,不能更改为了\\abcvar re = /^\abc/;console.log(re.test(str));//trueconsole.log(str.match(re));//["abc", index: 0, input: "abc"] 没有'\'console.log(re.exec(str));//["abc", index: 0, input: "abc"] 没有'\'var re2 = /^\\abc/;console.log(re2.test(str));//falseconsole.log(str.match(re2));//nullconsole.log(re2.exec(str));//nullvar re3 = /^\\\abc/;console.log(re3.test(str));//falseconsole.log(str.match(re3));//nullconsole.log(re3.exec(str));//nullvar re4 = /^\\\\abc/;console.log(re4.test(str));//falseconsole.log(str.match(re4));//nullconsole.log(re4.exec(str));//null
添加回答
举报
0/150
提交
取消