RegExp-dotAll
//.不能匹配四个字节的utf16字符和行终止符\n,\r console.log(/foo.bar/.test(‘foo\nbar‘)) //false //dotAll console.log(/foo.bar/us.test(‘foo\nbar‘)) //true //如何判断正则是否启用了dotAll模式 const re = /foo.bar/s console.log(re.dotAll) //true console.log(re.flags) //s
相关推荐
qidu 2020-07-05
山水沐光 2020-05-25
JnX 2020-06-27
Oudasheng 2020-06-27
lancanfei 2020-06-14
Justdoit00 2020-06-08
lovejfh 2020-05-14
muhongdi 2020-05-12
yuanran0 2020-05-11
shawsun 2020-05-10
qidu 2020-03-04
Buerzhu 2020-01-21
xhao 2020-01-11
eroshn 2019-11-09
yishujixiaoxiao 2019-11-05
RuoShangM 2019-10-23
TheBigBlue 2019-10-21