Java String .compareToIgnoreCase ( String str)
Syntax
String.compareToIgnoreCase(String str) has the following syntax.
public int compareToIgnoreCase(String str)
Example
In the following code shows how to use String.compareToIgnoreCase(String str) method.
public class Main {
public static void main(String[] argv) {
String str = "Java2s.com";
String str2 = "java2s.com";
System.out.println(str.compareToIgnoreCase(str2));
//w w w . ja v a2 s . c o m
}
}
The code above generates the following result.