Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
no re solution in Clear category for Find Quotes by alterGNU
def find_quotes(a):
l=[x for x in range(len(a)) if a[x]=="\""]
return [ a[i+1:j] for i,j in zip(l[:-1:2],l[1::2])]
July 16, 2021
Comments: