Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Find Quotes by l.szyman10
def find_quotes(a):
text = []
while('"' in a):
a = a[a.find('"')+1:]
text.append(a[:a.find('"')])
a = a[a.find('"')+1:]
return text
Aug. 11, 2020