提交 50794773 编写于 作者: H hjdhnx

搜索过滤算法

上级 15a07f44
function searchContains(key,result){
let keys = key.split(' ').filter(it=>it.trim());
let search_ok = true;
for(let i=0;i<keys.length;i++){
if(!result.includes(keys[i])){
search_ok = false;
break;
}
}
return search_ok
}
searchContains('奥斯卡 2021','2021奥斯卡最佳男主'); // true
searchContains('奥斯卡 2021','2021奥斯卡最佳男主'); // true
searchContains('奥斯卡2021','2021奥斯卡最佳男主'); // false
searchContains('奥斯卡','2021奥斯卡最佳男主'); // true
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册