Skip to content

Instantly share code, notes, and snippets.

@kxxoling
Created February 2, 2015 13:29
Show Gist options
  • Save kxxoling/42c1944ae911e845a7a3 to your computer and use it in GitHub Desktop.
Save kxxoling/42c1944ae911e845a7a3 to your computer and use it in GitHub Desktop.
def replace_words(text, word_dic):
yo = re.compile('|'.join(map(re.escape, word_dic)))
def translate(mat):
return word_dic[mat.group(0)]
return yo.sub(translate, text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment