gpt4 book ai didi

java - 如何检查一个字符串是否包含另一个字符串中的字符?

转载 作者:行者123 更新时间:2023-11-30 08:55:50 25 4
gpt4 key购买 nike

我想创建一个 boolean 方法,允许我检查一个字符串中随机生成的字符是否包含用户输入的字符串中的字符。

例子:

随机基词:手机

用户词:Cell --> 是的,没关系。

User word: Cells --> 不,它包含在给定的原始单词中找不到的字母。

我想我们也许可以做一些看起来像这样的事情:

public static class boolean usesSymbolsFromWord(String candidate, String base) {
//pseudocode

characters in String candidate are found in String base
return true;
}
return false;
}

最佳答案

只需尝试使用 Java.lang.String 的内置方法:

base.contains(candidate);

就这些。

有关更多信息,请参阅 Java Docs :

contains(CharSequence s)
Returns true if and only if this string contains the specified sequence of char values.

关于java - 如何检查一个字符串是否包含另一个字符串中的字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28871986/

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