how would you simplify all these conditions?
String s = "The wold is big"
if(s.contains("is") || s.contains("are") || s.contains("was") || s.contains("were")) 
{ 
    return s;
}
Since I have to check several cases like those, is there a way to simplify all those conditions?
 
     
     
     
     
    