How do you make a string ignore case?

Java String equalsIgnoreCase() Method with Examples. The equalsIgnoreCase() method of the String class compares two strings irrespective of the case (lower or upper) of the string . This method returns a boolean value, true if the argument is not null and represents an equivalent String ignoring case, else false.

Read more