Last active
August 29, 2015 14:04
-
-
Save YannBrrd/f428cac038896de7b6b9 to your computer and use it in GitHub Desktop.
LowerCaseNormalize for python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def remove_accents(input_str): | |
nkfd_form = unicodedata.normalize('NFKD', unicode(input_str.lower())) | |
return u"".join([c for c in nkfd_form if not unicodedata.combining(c)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment