Non-Capturing Group(?:[\w]*) *matches any number of characters from the set below:
\wany word character
*the literal (3210 / 408 / 2016) , repeated any number of times
=the literal = (6110 / 758 / 3D16)
*the literal (3210 / 408 / 2016) , repeated any number of times
"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:(?:(?:(?:(?:\\\W)*\\\W)*[^"]*)\\\W)*[^"]*") Non-Capturing Group(?:(?:(?:(?:\\\W)*\\\W)*[^"]*)\\\W)* *repeats the group contents below any number of times:
Non-Capturing Group(?:(?:(?:\\\W)*\\\W)*[^"]*) Non-Capturing Group(?:(?:\\\W)*\\\W)* *repeats the group contents below any number of times:
Non-Capturing Group(?:\\\W)* *repeats the group contents below any number of times:
\\the literal \ (9210 / 1348 / 5C16)
\Wany non-word character
\\the literal \ (9210 / 1348 / 5C16)
\Wany non-word character
Negated Character Class[^"]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
\\the literal \ (9210 / 1348 / 5C16)
\Wany non-word character
Negated Character Class[^"]* *matches any number of characters outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters