up vote 40 down vote favorite
31
share [g+] share [fb]

I have a unicode string in python, and I would like to remove all the accents (diacritics).

I found on the Web an elegant way to do this in Java:

  1. convert the unicode string to its long normalized form (with a separate character for letters and diacritics)
  2. remove all the characters whose unicode type is "diacritic".

Do I need to install a library such as pyICU or is this possible with just the python standard library? And what about in python 3.0?

Important note: I would like to avoid code with an explicit mapping from accented characters to their non-accented counterpart.

Thanks for your help.

link|improve this question

79% accept rate
feedback

5 Answers

up vote 27 down vote accepted

How about this:

import unicodedata
def strip_accents(s):
   return ''.join((c for c in unicodedata.normalize('NFD', s) if unicodedata.category(c) != 'Mn'))

This works on greek letters, too:

>>> strip_accents(u"A \u00c0 \u0394 \u038E")
u'A A \u0394 \u03a5'
>>> 

Update:

The character category (link is broken, see the unicode glossary) "Mn" stands for "Mark, Nonspacing", which is similar to unicodedata.combining in MiniQuark's answer (I didn't think of unicodedata.combining, but it is probably the better solution, because it's more explicit).

And keep in mind, these manipulations may significantly alter the meaning of the text. Accents, Umlauts etc. are not "decoration".

link|improve this answer
Cool, this seems to work, thanks. Could you explain (in your answer) what the Mn category is, please? – MiniQuark Feb 6 '09 at 9:01
3  
@hop: I'm french: I know exactly what you mean. For example "salé" means "salty", and "sale" means "dirty". Accents are useful. I just wish I could keep them, but unfortunately they are still refused in a lot of software, so sometimes you just cannot avoid removing them. In fact the goal of this question is precisely to try to find the best way to remove accents, while "butchering" as little as possible. So if you have a better solution than the one suggested here, I would be more than happy to use it. – MiniQuark May 27 '09 at 14:07
3  
+1 for Accents, Umlauts etc. are not "decoration". – kaizer.se Sep 11 '09 at 11:55
feedback

Unidecode is the correct answer for this. It transliterates any unicode string into the closest possible representation in ascii text.

link|improve this answer
Yeah, this is a better solution than simply stripping the accents. It provides much more useful transliterations for the languages that have conventions for writing words in ASCII. – Paul McMillan Apr 13 '10 at 21:29
3  
Seems to work well with Chinese, but the transformation of the French name "François" unfortunately gives "FranASSois", which is not very good, compared to the more natural "Francois". – EOL Sep 17 '11 at 14:56
Thank you for saving me hours of hard work (which would have resulted in a sub-standard solution)! – Arrieta Sep 25 '11 at 23:19
feedback

I just found this answer on the Web:

import unicodedata

def remove_accents(input_str):
    nkfd_form = unicodedata.normalize('NFKD', unicode(input_str))
    only_ascii = nkfd_form.encode('ASCII', 'ignore')
    return only_ascii

It works fine (for French, for example), but I think the second step (removing the accents) could be handled better than dropping the non-ASCII characters, because this will fail for some languages (Greek, for example). The best solution would probably be to explicitly remove the unicode characters that are tagged as being diacritics.

Edit: this does the trick:

import unicodedata

def remove_accents(input_str):
    nkfd_form = unicodedata.normalize('NFKD', unicode(input_str))
    return u"".join([c for c in nkfd_form if not unicodedata.combining(c)])

unicodedata.combining(c) will return true if the character c can be combined with the preceding character, that is mainly if it's a diacritic.

link|improve this answer
I had to add 'utf8' to unicode: nkfd_form = unicodedata.normalize('NFKD', unicode(input_str, 'utf8')) – Jabba Jan 8 at 23:27
feedback

Maybe this?

link|improve this answer
feedback

This is quite a good solution. Written in JavaScript but easily ported: http://semplicewebsites.com/removing-accents-javascript

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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