First solution in Clear category for Find Quotes by wbl4126
import re def find_quotes(a): return re.findall(r'"(.*?)"', a)
April 1, 2020
Comments: