我有一行要匹配多个关键字。应该匹配整个关键字。
例子,
String str = "This is an example text for matching countries like Australia India England";
if(str.contains("Australia") ||
str.contains("India") ||
str.contains("England")){
System.out.println("Matches");
}else{
System.out.println("Does not match");
}
这段代码工作正常。但是,如果要匹配的关键字太多,则行会增加。 是否有任何优雅的方式来编写相同的代码? 谢谢