Java String equalsIgnoreCase() method
The equalsIgnoreCase() method of the String class compares two strings based on their contents irrespective of the case ( lowercase or uppercase ). Method declaration – public boolean equalsIgnoreCase(String anotherString). What does it do? – It will accept a string as a function argument which will be compared with the string calling the function. What […]
Java String equalsIgnoreCase() method Read More »
