I have the following string data:
data = "*****''[[dogs and cats]]''/n"
I would like to use regular expressions in python to extract the string. All the data is encapsuled in the double quotes " ". What are the wildcards that I use so I can get the following:
print data.groups(1)
print data.groups(2)
print data.groups(3)
'dogs'
'and'
'cats'
Edit: So far I have something a long the lines of this
test = re.search("\\S*****''[[(.+) (.+) (.+)\\S]]''", "*****''[[dogs and cats]]''\n")
print test.group(1)

''(rather than double quotes")? Should non-letter characters always be ignored (e.g. the square brackets)? – Blckknght Nov 13 '12 at 4:13