Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.findall solution in Clear category for Find Quotes by kkkkk
import re
def find_quotes(string):
"""Return any tex found within double quotes in the given string."""
return re.findall(r'"(.*?)"', string)
March 8, 2020