Skip to content

Instantly share code, notes, and snippets.

@lambdamusic
Created November 5, 2015 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lambdamusic/0c340685bd6e278e8b2f to your computer and use it in GitHub Desktop.
Save lambdamusic/0c340685bd6e278e8b2f to your computer and use it in GitHub Desktop.
Find all letters in string (regex)
# http://stackoverflow.com/questions/8199398/extracting-only-characters-from-a-string-in-python
import re
st = ".srep05794"
res = " ".join(re.findall("[a-zA-Z]+", st))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment