gpt4 book ai didi

java - 检查 String 是否包含另一个完整的 String

转载 作者:行者123 更新时间:2023-11-30 06:22:18 24 4
gpt4 key购买 nike

所以,我一直在尝试在网上查找是否有一种方法可以让 String 在 java 中搜索另一个完整的字符串。不幸的是,我还没有找到任何有用的东西。

我的意思是:

String str = "this is a test";

如果我搜索 this is,它应该返回 true。但是如果我搜索 this i 它应该是 false。

我试过使用 String.matches(),但这行不通,因为正在搜索的某些字符串中可能包含 [、]、? 等 - 这会抛出它关了。使用 String.indexOf(search) != -1 也不起作用,因为它会为部分单词返回 true。

最佳答案

在正则表达式中使用 \b,即零宽度字边界定界符。

String str = "this is a test";
String search = "this is";
Pattern p = Pattern.compile(String.format("\\b%s\\b", Pattern.quote(search)));
boolean matches = p.matcher(Pattern.quote(str)).find();

关于java - 检查 String 是否包含另一个完整的 String,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19481419/

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