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 paolo.carlevero
import re
def find_quotes(a):
match = re.findall(r'\"(.*?)\"', a)
return match
May 27, 2021
Comments: