Domanda

I need help with a Python regex to extract strings either inside single or double quoted. I found a solution but the regex is in C# here:

How to extract the string in the quotes (either double quotes or single quotes)

I need to parse this string

tags = { 'one' : "two", "three", 'four' }

and return the array items:

one
two
three
four

Currently I have this for single quotes:

quoted = re.findall(r"'(.*?)'", buffer, re.DOTALL)      
È stato utile?

Soluzione

>>> buffer="tags = { 'one' : \"two\", \"three\", 'four' }"
>>> re.findall(r"['\"](.*?)['\"]", buffer)
['one', 'two', 'three', 'four']
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top