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

The problem it's easy. Is there any function in JAVA to compare two Strings and return true ignoring the accented chars?

ie

String x = "Joao";
String y = "João";

return that are equal.

Thanks

share|improve this question
7  
but those are NOT equal, why would you want them to be equal when they are not? – Jarrod Roberson Mar 3 '10 at 16:55
2  
@fuzzy both are usually the same name (it's the Portuguese version for John). Some people are just lazy to include accents – Samuel Carrijo Mar 3 '10 at 16:57
1  
In Spanish, n and ñ are considered different letters. – Nicolás Mar 3 '10 at 17:01
4  
Yeah, but by his example, it seems he wants to compare names and is not too worried about false positives – Samuel Carrijo Mar 3 '10 at 17:03
1  
They are not equal, but assumed equality is useful when comparing for sorting, or in filenames, where UTF-8 characters are not well-supported (e.g. in zip files...) – Lukas Eder Nov 29 '10 at 11:59
show 5 more comments

4 Answers

up vote 19 down vote accepted

I think you should be using the Collator class. It allows you to set a strength and locale and it will compare characters appropriately.

From the Java 1.6 API:

You can set a Collator's strength property to determine the level of difference considered significant in comparisons. Four strengths are provided: PRIMARY, SECONDARY, TERTIARY, and IDENTICAL. The exact assignment of strengths to language features is locale dependant. For example, in Czech, "e" and "f" are considered primary differences, while "e" and "ě" are secondary differences, "e" and "E" are tertiary differences and "e" and "e" are identical.

I think the important point here (which people are trying to make) is that "Joao"and "João" should never be considered as equal, but if you are doing sorting you don't want them to be compared based on their ASCII value because then you would have something like Joao, John, João, which is not good. Using the collator class definitely handles this correctly.

share|improve this answer
1  
This is a better answer than the accepted one. – Software Monkey Mar 3 '10 at 17:59
1  
@Software Monkey: I agree too, even though I wrote the accepted answer. :-P – Chris Jester-Young Mar 3 '10 at 19:39
1  
FYI folks, created a bit of code here that follows your guidelines, so thanks for that. However I didn't see a way to do a comparison that is ACCENT insensitive, but CASE sensitive, following the Collator's rules... did I miss something? – Joao Feb 3 '12 at 19:54
1  
@Joao you won't be able to do that with the Collator class because the strength is set as the minimum level. So to get case sensitivity you need TERTIARY, but for accent insensitivity you only want PRIMARY. So they won't work together. You might be better using Chris Jester-Youngs solution to filter off the accent characters then compare the strings normally. – DaveJohnston Feb 6 '12 at 10:30

You didn't hear this from me (because I disagree with the premise of the question), but, you can use java.text.Normalizer, and normalize with NFD: this splits off the accent from the letter it's attached to. You can then filter off the accent characters and compare.

share|improve this answer
Thank you, this is just what I needed. – framara Mar 3 '10 at 17:01
1  
The two steps are combined into one by StringUtils.stripAccents commons.apache.org/proper/commons-lang/javadocs/api-3.1/org/… – cquezel May 31 at 19:18

You should use the Collator class for that with the appropriate strength. I once wrote a detailed explanation about it in my blog - you can read it here

share|improve this answer

The problem with these sort of conversions is that there isn't always a clear-cut mapping from accented to non-accented characters. It depends on codepages, localizations, etc. For example, is this a with an accent equivalent to an "a"? Not a problem for a human, but trickier for the computer.

AFAIK Java does not have a built in conversion that can look up the current localization options and make these sort of conversions. You may need some external library that handles unicode better, like ICU (http://site.icu-project.org/ )

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.