模糊查询

const a = '你好'  //用户输入的字符串
const regstr = [",...a,"].join('.*')
const reg = new RegExp(regstr)
console.log(reg.test('ni你hao好'))  //待匹配的字符型

你可能感兴趣的:(模糊查询)