我有以下字符串数据:
data = "*****''[[dogs and cats]]''/n"
我想在 python 中使用正则表达式来提取字符串。所有数据都包含在双引号“”中。我使用了哪些通配符,以便获得以下信息:
print data.groups(1)
print data.groups(2)
print data.groups(3)
'dogs'
'and'
'cats'
编辑:到目前为止,我有一些很长的内容
test = re.search("\\S*****''[[(.+) (.+) (.+)\\S]]''", "*****''[[dogs and cats]]''\n")
print test.group(1)