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 35 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
4  
@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
5  
+1 for Accents, Umlauts etc. are not "decoration". – kaizer.se Sep 11 '09 at 11:55
thanks for the reply, helped. it doesn't work for some characters though - "ø" and "ł" – Merlin Mar 31 at 18:14
These are not composed characters, unfortunately--even though "ł" is named "LATIN SMALL LETTER L WITH STROKE"! You'll either need to play games with parsing unicodedata.name, or break down and use a look-alike table-- which you'd need for Greek letters anyway (Α is just "GREEK CAPITAL LETTER ALPHA"). – alexis Apr 7 at 11:25
show 1 more comment
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
5  
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
depends what you're trying to achieve. for example I'm doing a search right now, and I don't want to transliterate greek/russian/chinese, I just want to replace "ą/ę/ś/ć" with "a/e/s/c" – Merlin Mar 31 at 18:15
1  
@EOL unidecode works for great for strings like "François", if you pass unicode objects to it. It looks like you tried with a plain byte string. – Karl Bartel Apr 30 at 9:38
show 1 more comment
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
2  
I had to add 'utf8' to unicode: nkfd_form = unicodedata.normalize('NFKD', unicode(input_str, 'utf8')) – Jabba Jan 8 at 23:27
@Jabba: , 'utf8' is a "safety net" needed if you are testing input in terminal (which by default does not use unicode). But usually you don't have to add it, since if you're removing accents then input_str is very likely to be utf8 already. It doesn't hurt to be safe, though. – MestreLion Apr 17 at 23:15
feedback

Maybe this?

link|improve this answer
1  
An URL is not an answer. Please provide a succinct explanation of the solution, or least a usage example. Citing sources and saying "here you can find more details" is fine, but remember URLs may die in the future. – MestreLion Apr 11 at 2:18
feedback

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

link|improve this answer
1  
An URL is not an answer. Please provide a succinct explanation of the solution, or least a usage example. Citing sources and saying "here you can find more details" is fine, but remember URLs may die in the future. – MestreLion Apr 11 at 2:19
... and you can't be serious about hardcoding a huge mapping table be considered "quite a good solution", specially after the OP explicitly asked to avoid this approach. – MestreLion Apr 11 at 2:23
... last but not least, if your solution is "easily portable", why didn't you port it yourself and presented here the Python version? OP asked about Python, not JS – MestreLion Apr 11 at 2:25
feedback

Your Answer

 
or
required, but never shown

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