compareIgnoreCase method

int compareIgnoreCase(
  1. String other
)

string compare ignoreCase

Implementation

int compareIgnoreCase(String other){
  return toLowerCase().compareTo(other.toLowerCase());
}