Question

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)      
Was it helpful?

Solution

>>> buffer="tags = { 'one' : \"two\", \"three\", 'four' }"
>>> re.findall(r"['\"](.*?)['\"]", buffer)
['one', 'two', 'three', 'four']
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top