Regex solution in Clear category for Find Quotes by linfei2
import re def find_quotes(text): return re.findall(r'"(.*?)"', text)
June 17, 2021