Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
17 questions posted and not a single answer accepted? I'm not sure you've grasped the concept of how the forum works. If this question doesn't get an "accept" then I'm not sure what will. – camickr Jun 1 '11 at 15:16

4 Answers

up vote 6 down vote accepted

String.compareTo might or might not be what you need.

Take a look at this link if you need localized ordering of strings.

share|improve this answer

Take a look at the string.compareTo method.

s1.compareTo(s2)

From the javadocs:

The result is a negative integer if this String object lexicographically precedes the argument string. The result is a positive integer if this String object lexicographically follows the argument string. The result is zero if the strings are equal; compareTo returns 0 exactly when the equals(Object) method would return true.

share|improve this answer
Nice one ....thanks – Makky Jun 1 '11 at 15:17

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:

class StringCompareExample {
    public static void main(String args[]){
        String s1 = "Project"; String s2 = "Sunject";
        verboseCompare(s1, s2);
        verboseCompare(s2, s1);
        verboseCompare(s1, s1);
    }

    public static void verboseCompare(String s1, String s2){
        System.out.println("Comparing \"" + s1 + "\" to \"" + s2 + "\"...");

        int comparisonResult = s1.compareTo(s2);
        System.out.println("The result of the comparison was " + comparisonResult);

        System.out.print("This means that \"" + s1 + "\" ");
        if(comparisonResult < 0){
            System.out.println("lexicographically precedes \"" + s2 + "\".");
        }else if(comparisonResult > 0){
            System.out.println("lexicographically follows \"" + s2 + "\".");
        }else{
            System.out.println("equals \"" + s2 + "\".");
        }
        System.out.println();
    }
}

Here is a live demonstration that shows it works: http://ideone.com/FukIN

share|improve this answer
String a; 
String b;  
int compare = a.compareTo(b);  
if (compare < 0)  
{  
    //a is smaller
}  
else   
{  
   if (compare > 0)
    //a is larger 
   }else  
   {  
    //a is equal to b
   } 
} 
share|improve this answer
thanks for the reply. – Makky Jun 1 '11 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.