我有这个脚本工作非常好能够匹配文本与宽松和变音不敏感,如下所示:
https://jsfiddle.net/nvdhqf23/11/
我还需要改进脚本以匹配文本与新的换行符<br>
,如下所示:
hello <br> world
or
hello <br /> world
所以我需要修改脚本regex以匹配换行符:
var inputPattern = XRegExp('('+input.split(' ').join('[\\n\\r\\s\\p{P}\\p{S}]+')+')',"g");