标签: javascript regex
如何用空格搜索字符串例如:
const string = 'This is example message'; string.test('This is example') -> return true. string.test('THiS is Example') -> return true
我不想使用indexOf,因为当字符串中包含大字母时,返回false
indexOf
false