DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Strip Accents
// Strip accents from a string. For example, "Sigur Rós" => "Sigur Ros".
def strip_accents(string):
import unicodedata
return unicodedata.normalize('NFKD', unicode(string)).encode('ASCII', 'ignore')




