Comment: The value.
Comment: A string value, single or double-quoted:
Group quote(?<quote>["']) "the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Comment: Capture the double or single quote.
Non-Capturing Group(?:\\.|.)*? *?repeats the group contents below any number of times:
\\the literal \ (9210 / 1348 / 5C16)
.any character (except for line terminators)
.any character (except for line terminators)
Comment: Backslash followed by anything or any char, ungreedy.
\k<quote>the text saved by group quote
Comment: The double or single quote captured before.