gpt4 book ai didi

java - 检查字符串是否包含数组中的所有字符串

转载 作者:行者123 更新时间:2023-12-04 19:50:40 25 4
gpt4 key购买 nike

如何检查 String 是否包含来自 Strings 的所有 Array

我目前的代码:

String word = "abc";
String[] keywords = {"a", "d"};

for(int i = 0; i < keywords.length; i++){
if(word.contains(keywords[i])){
System.out.println("Yes");
}else{
System.out.println("No");
}
}

最佳答案

如果您将其包装到一个单独的方法中,代码看起来会更好:

public static boolean containsAllWords(String word, String ...keywords) {
for (String k : keywords)
if (!word.contains(k)) return false;
return true;
}

关于java - 检查字符串是否包含数组中的所有字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43409630/

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