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

Is there a better way to do this?

/* Compares two characters.  
   If ch1 is alphabetically smaller than ch2, return true
   If ch1 is equal to ch2 or is alphabetically greater, return false
*/
public static boolean smallestCharacter(char ch1, char ch2) {
    return Character.parseChar((new String(ch1)).toLowerCase()) < 
                 Character.parseChar((new String(ch2)).toLowerCase())
}

Update: It can be assumed that ch1, and ch2 are both characters from the english alphabet. If you have a similar question, but can't assume that ch2 and ch2 are English characters, I suggest reading @Tedd Hopp's Answer.

share|improve this question
2  
What do you mean by alphabetical order? Which alphabet? What if a user provides a character that isn't part of that alphabet? – Mark Byers Nov 12 '11 at 23:59
1  
@Mark et al, based on the code, it means case should be ignored, i.e. B < c and b < C. – paxdiablo Nov 13 '11 at 0:02
@Mark those are quite valid concerns. The purpose of this question was to find a less obtuse way to compare two characters from the english alphabet, while ignoring case. – Hurpe Nov 20 '11 at 18:42

4 Answers

up vote 8 down vote accepted

what about

return Character.toLowerCase(ch1) < Character.toLowerCase(ch2);
share|improve this answer
3  
This will work provided the Unicode code points for the two characters corresponds to OP's notion of "alphabetic order". It's fine for English, but not for many other languages. For more general settings, it's necessary, I think, to use a Collator with the proper locale. – Ted Hopp Nov 13 '11 at 0:15
Also this won't work for supplementary characters to be exact. – viktor Nov 13 '11 at 0:23
Ted Hopp is right. Unless you're limiting yourself to only ASCII characters, it's way more complicated than that. For example, the letter Ą is 0104 in Unicode, which means that a naive sorting function would put it after Z (005A). Which is nonsense - every Polish schoolchild knows that Ą comes right after A. – Mike Baranczak Nov 13 '11 at 0:49
@TedHopp You could write that up with some more detail as an answer. – Kevin Reid Nov 13 '11 at 0:51
@Kevin - Done. Thanks for the suggestion. – Ted Hopp Nov 13 '11 at 5:12

For English (and many other languages), you can just use Character.toLowerCase as @aleph_null proposes. This compares characters based on their (lower case) Unicode code points. For some languages, however, this will be wrong. (For instance, in German, ß — eszett — comes between 's' and 't'. However, its Unicode value is U+00DF, which would make it come after 'z'.)

The only way comparing two characters makes sense is with reference to a locale. One way to do this is to use a Collator:

/**
 * Compares two characters, ignoring all but primary differences. (Case
 * is a tertiary difference.)
 * @return true if ch1 is alphabetically smaller than ch2; false otherwise
 */
public static boolean smallestCharacter(char ch1, char ch2, Locale locale) {
    Collator collator = Collator.getInstance(locale);
    collator.setStrength(Collator.PRIMARY); // Collator.SECONDARY would work
    return 0 > collator.compare(Character.toString(ch1),
                                Character.toString(ch2)
                               );
}

(P.S., new String(ch1) is not the way to create a String object containing a given char value.)

share|improve this answer

Don't create String object for each character. You can use simple Character.toLowerCase(char) After that your comparison method is:

public boolean smallestCharacter(char a, char b){
    return Character.toLowerCase(a) < Character.toLowerCase(b)
}
share|improve this answer

How about:

public static boolean smallestCharacter(char ch1, char ch2) {
  if (ch1 > 0x60) ch1 -= 0x20;
  if (ch2 > 0x60) ch2 -= 0x20;
  return ch1 < ch2;
}
share|improve this answer

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.