gpt4 book ai didi

如果它匹配数组中的多个单词,Javascript 选择字符串

转载 作者:行者123 更新时间:2023-11-29 19:14:39 24 4
gpt4 key购买 nike

我有一个字符串“这个字符串中有多个单词”,我有一个包含多个单词的数组 [“There”、“string”、“multiple”]。我想将我的字符串与这个数组匹配,如果数组中的所有单词都出现在字符串中,它应该返回 true。如果数组中的任何一个单词不存在于字符串中,它应该返回 false。

 var str = "There are multiple words in this string";
var arr = ["There", "string", "multiple"]

这应该返回 true。

 var str = "There are multiple words in this string";
var arr = ["There", "hello", "multiple"]

这应该返回 false,因为字符串中不存在“hello”。

如何在纯 JavaScript 中高效地完成这项工作?

最佳答案

使用 Array.prototype.every() method ,如果所有元素都通过条件,则返回 true :

var str = "There are multiple words in this string";
var arr = ["There", "string", "multiple"]
var arr2 = ["There", "hello", "multiple"]

var result = arr.every(function(word) {
// indexOf(word) returns -1 if word is not found in string
// or the value of the index where the word appears in string
return str.indexOf(word) > -1
})
console.log(result) // true

result = arr2.every(function(word) {
return str.indexOf(word) > -1
})
console.log(result) // false

参见 this fiddle

关于如果它匹配数组中的多个单词,Javascript 选择字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36283767/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com