我需要使用Python正則表達式來提取單引號或雙引號內的字符串。我發現了一個解決方案,但正則表達式是在C#中的位置:以單引號或雙引號在Python中提取字符串
How to extract the string in the quotes (either double quotes or single quotes)
我需要解析此字符串
tags = { 'one' : "two", "three", 'four' }
並返回數組項:
one
two
three
four
目前,我有這對於單引號:
quoted = re.findall(r"'(.*?)'", buffer, re.DOTALL)
什麼是'tags'? – thefourtheye