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
|
|
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:
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. |
|||||||||||||||||
|
|
You didn't hear this from me (because I disagree with the premise of the question), but, you can use |
|||||||
|
|
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 |
||||
|
|
|
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/ ) |
|||
|
|