simple regex solution in Clear category for Find Quotes by kdim
from re import findall def find_quotes(a): return findall(r'\"(.*?)\"', a)
Feb. 16, 2021