Problem Description:: Stringcompareemp String String String Object
Problem Description:: Stringcompareemp String String String Object
1 of 1
http://www.tutorialspoint.com/javaexamples/string_compare.htm
http://www.tutorialspoint.com/cgi-bin/printpage.cgi
Copyright tutorialspoint.com
Problem Description:
How to compare two strings ?
Solution:
Following example compares two strings by using str compareTo
, str compareToIgnoreCase
and str compareTo
of string class and returns the ascii difference of first odd characters of
compared strings .
public class StringCompareEmp{
public static void main(String args[]){
String str = "Hello World";
String anotherString = "hello world";
Object objStr = str;
System.out.println( str.compareTo(anotherString) );
System.out.println( str.compareToIgnoreCase(anotherString) );
System.out.println( str.compareTo(objStr.toString()));
}
}
Result:
The above code sample will produce the following result.
-32
0
0
21-Jun-16 2:40 PM