up vote 9 down vote favorite
5
share [g+] share [fb]

Is there a better way for getting rid of accents and making those letters regular apart from using String.replaceAll() method and replacing letters one by one? Example:

Input: orčpžsíáýd

Output: orcpzsiayd

It doesn't need to include all letters with accents like the Russian alphabet or the Chinese one.

link|improve this question

feedback

4 Answers

up vote 18 down vote accepted

java.text.Normalizer will handle this for you.

string = Normalizer.normalize(string, Normalizer.Form.NFD);

This will separate all of the accent marks from the characters. Then, you just need to compare each character against being a letter and throw out the ones that aren't.

string = string.replaceAll("[^\\p{ASCII}]", "");
link|improve this answer
1  
+1 Didn't know about normalizer! – Vivin Paliath Jul 23 '10 at 20:42
I like this approach :-) thx – Martin Jul 23 '10 at 20:46
feedback

Create a map that maps the accented character to the unaccented one. Then iterate over map. Use the key of the map as the character you want to replace, and the value of the map as the replacement character.

Map<String, String> replacements = new LinkedHashMap<String,String>() {{
    put("č", "c");
    put("ž", "z");
    ...
    put("ý", "y");
}};

then:

for(Map.Entry<String, String> entry : replacements.entrySet()) {
    inputStr.replaceAll(entry.getKey(), entry.getValue());
}

This way you cut out the multiple replaceAll calls and have a single one.

Based on Erick's reponse I found this page that talks about the different uses of Normalizer.

link|improve this answer
feedback

Depending on the language, those might not be considered accents (which change the sound of the letter), but diacritical marks

https://secure.wikimedia.org/wikipedia/en/wiki/Diacritic#Languages_with_letters_containing_diacritics

"Bosnian and Croatian have the symbols č, ć, đ, š and ž, which are considered separate letters and are listed as such in dictionaries and other contexts in which words are listed according to alphabetical order."

Removing them might be inherently changing the meaning of the word, or changing the letters into completely different ones.

link|improve this answer
Agreed. For example in swedish: "höra" (hear) -> "hora" (whore) – Christoffer Hammarström Oct 5 '10 at 7:08
It doesn't matter what they mean. The question is how to remove them. – Erick Robertson Oct 21 '10 at 14:41
feedback
System.out.println(Normalizer.normalize("àèé", Normalizer.Form.NFD).replaceAll("\\p{InCombiningDiacriticalMarks}+", ""));

worked for me. The output of the snippet above gives "aee" which is what I wanted, but

System.out.println(Normalizer.normalize("àèé", Normalizer.Form.NFD).replaceAll("[^\\p{ASCII}]", ""));

didn't do any substitution.

link|improve this answer
The "[^\\p{ASCII}]" version works for me – Bohemian Dec 26 '11 at 23:12
feedback

Your Answer

 
or
required, but never shown

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