JavaScript 按多个字符串筛选数组?
要按多个字符串筛选数组,可以使用 for 循环以及 indexOf()。以下为代码:-
示例
var details = [ 'My first Name is John and last Name is Smith', 'My first Name is John and last Name is Doe', 'Student first Name is John and last Name is Taylor' ]; var isPresent; var records = []; var matchWords = ['John', 'Doe']; for (var index = 0; index < details.length; index++){ isPresent = true; for (var outer = 0; outer< matchWords.length; outer++) { if (details[index].indexOf(matchWords[outer]) === -1) { isPresent = false; break; } } if (isPresent){ records.push(details[index]); } } console.log(records)
要运行上述程序,你需要使用以下命令:-
node fileName.js.
在这里,我的文件名是 demo151.js。
输出
这将生成以下输出:-
PS C:\Users\Amit\JavaScript-code> node demo151.js [ 'My first Name is John and last Name is Doe'
广告