Good afternoon
String s1 = "Project";
String s2 = "Sunject";
I want to compare above string by their alphabetic order which in this case "Project" will be true as "P" comes before "S" .
Does anyknow how would you do that in Java?
thanks
|
Good afternoon
I want to compare above string by their alphabetic order which in this case "Project" will be true as "P" comes before "S" . Does anyknow how would you do that in Java? thanks |
|||||
|
|
String.compareTo might or might not be what you need. Take a look at this link if you need localized ordering of strings. |
|||
|
|
|
Take a look at the
From the javadocs:
|
|||
|
|
|
You can call either string's compareTo method (java.lang.String.compareTo). This feature is well documented on the java documentation site. Here is a short program that demonstrates it:
Here is a live demonstration that shows it works: http://ideone.com/FukIN |
|||
|
|
|
|||
|
|