Regular Expressions Python Tutorial

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