Skip to content

Instantly share code, notes, and snippets.

@MLWhiz
Created January 18, 2019 05:45
Show Gist options
  • Select an option

  • Save MLWhiz/57c4b9d7d26f50c0209257ff28b399b0 to your computer and use it in GitHub Desktop.

Select an option

Save MLWhiz/57c4b9d7d26f50c0209257ff28b399b0 to your computer and use it in GitHub Desktop.
def clean_text(x):
pattern = r'[^a-zA-z0-9\s]'
text = re.sub(pattern, '', x)
return x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment