我需要检查一个字符串是否不包含任何这些字符串可能性:
跨国公司 BRA LEB MAR RVC 方式 GLZ WWW HYB
我当前的代码:
if(selectedLocation.equals("OTH"))
{
if(!currentClassLocation.equals("MNC") &&
!currentClassLocation.equals("BRA") &&
!currentClassLocation.equals("LEB") &&
!currentClassLocation.equals("MAR") &&
!currentClassLocation.equals("RVC") &&
!currentClassLocation.equals("WAY") &&
!currentClassLocation.equals("GLZ") &&
!currentClassLocation.equals("WWW") &&
!currentClassLocation.equals("HYB"))
{
//Awesome, I need this string! I operate on it here.
}
}
长话短说,我不能使用 for 循环。有没有一种方法可以检查字符串是否在没有迭代的情况下不包含任何这些?