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

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.

share|improve this question

4 Answers

up vote 49 down vote accepted

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

share|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
6  
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
2  
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 '12 at 18:15
8  
@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 '12 at 9:38
1  
@KarlBartel: Thanks, you're completely right! – EOL May 1 '12 at 11:59
show 3 more comments

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 "Mn" stands for Nonspacing_Mark, 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".

share|improve this answer
1  
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
5  
@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". – u0b34a0f6ae Sep 11 '09 at 11:55
thanks for the reply, helped. it doesn't work for some characters though - "ø" and "ł" – Merlin Mar 31 '12 at 18:14
1  
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 '12 at 11:25
show 1 more comment

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.

share|improve this answer
3  
I had to add 'utf8' to unicode: nkfd_form = unicodedata.normalize('NFKD', unicode(input_str, 'utf8')) – Jabba Jan 8 '12 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 '12 at 23:15

This handles not only accents, but also "strokes" (as in ø etc.):

import unicodedata as ud

def rmdiacritics(char):
    '''
    Return the base character of char, by "removing" any
    diacritics like accents or curls and strokes and the like.
    '''
    desc = ud.name(unicode(char))
    cutoff = desc.find(' WITH ')
    if cutoff != -1:
        desc = desc[:cutoff]
    return ud.lookup(desc)

This is the most elegant way I can think of (and it has been mentioned by alexis in a comment on this page), although I don't think it is very elegant indeed.

There are still special letters that are not handled by this, such as turned and inverted letters, since their unicode name does not contain 'WITH'. It depends on what you want to do anyway. I sometimes needed accent stripping for achieving dictionary sort order.

share|improve this answer

protected by tchrist Sep 6 '12 at 11:55

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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