Tutorial
Tools & Languages
Examples
Reference
Multi Line String with Escaped Quotes
"
[^"\\]
*
(
\\
.
[^"\\]
*
)
*
"
Match the character """ literally
Match a single character not present in the list: one of the characters ""\"
Between zero and unlimited times, as many times as possible, giving back as needed (greedy)
Match the regular expression below and capture its match into backreference number 1
Between zero and unlimited times, as many times as possible, giving back as needed (greedy)
Note: You repeated the backreference itself. The backreference will capture only the last iteration. Put the backreference inside a group and repeat that group to capture all iterations.
Match the character "\" literally
Match any single character that is not a line break character
Match a single character not present in the list: one of the characters ""\"
Between zero and unlimited times, as many times as possible, giving back as needed (greedy)
Match the character """ literally
Welcome
Tutorial
Tools and Languages
Examples
Reference
About This Site
Download and Print