gpt4 book ai didi

java - 如何检查一个字符串是否包含另一个字符串的一部分? (不是整个字符串)

转载 作者:行者123 更新时间:2023-12-02 11:25:34 25 4
gpt4 key购买 nike

我有 2 个字符串:

1)约翰有 2 个苹果。

2)科迪在约翰的地下室玩 Xbox。

现在这两个字符串有共同的“John

但似乎没有编程方法可以检查这一点。我能得到的最接近的是如何检查字符串是否包含特定单词: str1.toLowerCase().contains(str2.toLowerCase())

那么如何检查字符串 1) 是否包含字符串 2) 的一部分?

最佳答案

这可以工作

public static void main(String[] args) {
String x = "John has 2 apples.";
String y = "Cody plays xbox in John's basement.";
// print words of x that matches any of y
findMatch(Arrays.asList(x.split(" ")), y);
// print words of y that matches any of x
findMatch(Arrays.asList(y.split(" ")), x);

}

private static void findMatch(List<String> firstArr,String statement) {
for (String string : firstArr) {
if(statement.contains(string)) {
System.out.println(string);
}
}
}

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

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