Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python replace accented characters code

import unicodedata

def strip_accents(text):

    try:
        text = unicode(text, 'utf-8')
    except NameError: # unicode is a default on python 3 
        pass

    text = unicodedata.normalize('NFD', text)
           .encode('ascii', 'ignore')
           .decode("utf-8")

    return str(text)

s = strip_accents('àéêöhello')

print s
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #replace #accented #characters #code
ADD COMMENT
Topic
Name
8+8 =