Answers for "python regex any letter or quote"

0

python regex inside quotes

"(?:\.|[^"\])*"

"       # Match a quote.
(?:     # Either match...
 \.    # an escaped character
|       # or
 [^"\] # any character except quote or backslash.
)*      # Repeat any number of times.
"       # Match another quote.
Posted by: Guest on October-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language