regex solution in Clear category for Find Quotes by OrginalS
import re find_quotes = lambda a: re.findall(r'"([^"]*)"', a)
May 14, 2020