python regex inside quotes

Solutions on MaxInterview for python regex inside quotes by the best coders in the world

showing results for - "python regex inside quotes"
Kelyan
22 Oct 2016
1"(?:\\.|[^"\\])*"
2
3"       # Match a quote.
4(?:     # Either match...
5 \\.    # an escaped character
6|       # or
7 [^"\\] # any character except quote or backslash.
8)*      # Repeat any number of times.
9"       # Match another quote.