equalsIgnoreCase()

Compares two Strings for equality. The comparison is not case-sensitive, meaning the String("hello") is equal to the String("HELLO"). myString.equalsIgnoreCase(myString2)
myString: a variable of type String. myString2: a variable of type String. true: if myString equals myString2 (ignoring case). false: otherwise.