gpt4 book ai didi

java - 正则表达式查找整个单词

转载 作者:行者123 更新时间:2023-12-01 18:08:42 24 4
gpt4 key购买 nike

如何查找整个单词,即 "EU",是否存在于字符串 "I am in the EU." 中,同时不匹配类似情况“我在欧洲。”

基本上,我想要某种正则表达式来表示该单词,即 "EU" 两侧都带有非字母字符。

最佳答案

.*\bEU\b.*

 public static void main(String[] args) {
String regex = ".*\\bEU\\b.*";
String text = "EU is an acronym for EUROPE";
//String text = "EULA should not match";


if(text.matches(regex)) {
System.out.println("It matches");
} else {
System.out.println("Doesn't match");
}

}

关于java - 正则表达式查找整个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60508567/

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