Python Regex à l'intérieur des citations
"(?:\\.|[^"\\])*"
" # Match a quote.
(?: # Either match...
\\. # an escaped character
| # or
[^"\\] # any character except quote or backslash.
)* # Repeat any number of times.
" # Match another quote.
Depressed Dotterel