Regular Expressions Python Tutorial

import re
pat = '[a-zA-Z]+'
text = '"Hm Err -- are you sure?" he said, sounding insecure.'
print re.findall(pat, text)