Package java.lang
Class String

Public Method equalsIgnoreCase

boolean equalsIgnoreCase(String other)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Compares this String to another String, ignoring case. Returns true if they are of the same length and corresponding characters are equal except for their case.

Example

boolean result = "aaa".equalsIgnoreCase("AAA"); // returns true