Skip to content

Instantly share code, notes, and snippets.

@azalea
Created November 29, 2011 07:38
Show Gist options
  • Save azalea/1403883 to your computer and use it in GitHub Desktop.
Save azalea/1403883 to your computer and use it in GitHub Desktop.
re split
import re
txt = 'abc-def, -g!8hij'
words = re.compile('[^A-z^a-z]+').split(txt)
# Or
words = re.split('[^A-z^a-z]+',txt)
# References:
# http://docs.python.org/library/re.html#re.split
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment