irborrero
7/24/2019 - 2:27 PM

Compare Strings


//CASE SENSITIVE
  s1.equals(s2);
  
//NO CASE SENSITIVE
  s1.equalsIgnoreCase(s2);