gpt4 book ai didi

javascript - 如何判断具有多个单词的输入值是否包含 jQuery/javascript 中数组的值

转载 作者:行者123 更新时间:2023-11-30 15:53:50 24 4
gpt4 key购买 nike

我想检查像“me and her”这样的字符串是否包含数组中的值。该数组可能如下所示:

["和", "先生", "先生"]

如果是,则应返回 false。这意味着“John Doe”应该返回 true 但“Mr. John Doe”或“john and Jane Doe”应该返回 false

我认为我不能使用 $.inArray,因为它只检查特定值而不是字符串的一部分。

有人吗?

最佳答案

您可以使用 native JavaScript String.includes()方法来检查一个字符串是否包含一个值,然后遍历你的事物列表。像这样:

function checkStringAgainstList(str) {
var exclude = ['Mr', 'and', 'Mrs'];
for (var ndx in exclude) {
if(str.includes(exclude[ndx])) {
return false;
}
}
return true;
}

这似乎是您想要的。这是一个 fiddle

关于javascript - 如何判断具有多个单词的输入值是否包含 jQuery/javascript 中数组的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38899390/

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