Java String.compareTo(String anotherString)
Syntax
String.compareTo(String anotherString) has the following syntax.
public int compareTo(String anotherString)
Example
In the following code shows how to use String.compareTo(String anotherString) method.
public class Main {
public static void main(String[] argv) {
String str = "Java2s.com";
String str2 = "java2s.com";
System.out.println(str.compareTo(str2));
/* w ww .j a v a 2 s. c om*/
}
}
The code above generates the following result.