Never been to DZone Snippets before?

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

About this user

Adeel Khan http://umbc.edu/~adeel2

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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')
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS