Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Find Quotes by suic
def find_quotes(a):
is_quote = False
quote = []
result = []
for c in a:
if c == '"':
if is_quote:
result.append("".join(quote))
is_quote = not is_quote
quote = []
elif is_quote:
quote.append(c)
return result
April 22, 2019