compareTo()

Compares two Strings, testing whether one comes before or after the other, or whether they’re equal. The strings are compared character by character, using the ASCII values of the characters. That means, for example, that 'a' comes before 'b' but after 'A'. Numbers come before letters. myString.compareTo(myString2)
myString: a variable of type String. myString2: another variable of type String. a negative number: if myString comes before myString2. 0: if String equals myString2. a positive number: if myString comes after myString2.