RegExp-dotAll
Posted qjb2404
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RegExp-dotAll相关的知识,希望对你有一定的参考价值。
//.不能匹配四个字节的utf16字符和行终止符 , console.log(/foo.bar/.test(‘foo bar‘)) //false //dotAll console.log(/foo.bar/us.test(‘foo bar‘)) //true //如何判断正则是否启用了dotAll模式 const re = /foo.bar/s console.log(re.dotAll) //true console.log(re.flags) //s
以上是关于RegExp-dotAll的主要内容,如果未能解决你的问题,请参考以下文章