urlthe literal text url (case insensitive) \(the literal ( (4010 / 508 / 2816)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:(['"])?(?:\\\2|.)*\2|(?:\\[\)\'\"]|[^'")])*) 1st Alternative(['"])?(?:\\\2|.)*\2 ?repeats the group contents below at most once:
'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:\\\2|.)* *repeats the group contents below any number of times:
\\the literal \ (9210 / 1348 / 5C16)
\2the text saved by group 2
.any character (except for line terminators)
\2the text saved by group 2
2nd Alternative(?:\\[\)\'\"]|[^'")])* Non-Capturing Group(?:\\[\)\'\"]|[^'")])* *repeats the group contents below any number of times:
1st Alternative\\[\)\'\"] \\the literal \ (9210 / 1348 / 5C16)
\)the literal ) (4110 / 518 / 2916)
\'the literal ' (3910 / 478 / 2716)
\"the literal " (3410 / 428 / 2216)
Negated Character Class[^'")] 'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
\)the literal ) (4110 / 518 / 2916)
.*any character (except for line terminators), repeated any number of times