^start of line
\w++any word character, repeated at least once
\W++any non-word character, repeated at least once
Group 1((?<=\")[\w-]+(?=")) Positive Lookbehind(?<=\") \"the literal " (3410 / 428 / 2216)
+matches at least one character from the set below:
\wany word character
-the literal - (4510 / 558 / 2D16)
"the literal " (3410 / 428 / 2216)
\W+any non-word character, repeated at least once
Group 2((?<=\")[\w-]+(?=")) Positive Lookbehind(?<=\") \"the literal " (3410 / 428 / 2216)
+matches at least one character from the set below:
\wany word character
-the literal - (4510 / 558 / 2D16)
"the literal " (3410 / 428 / 2216)
+?matches at least one character from the set below:
\Sany non-whitespace character
\sany whitespace character
countthe literal text count (case sensitive) \W+any non-word character, repeated at least once
=the literal = (6110 / 758 / 3D16)
.*any character (except for line terminators), repeated any number of times
+?matches at least one character from the set below:
\Sany non-whitespace character
\sany whitespace character
^start of line
}the literal } (12510 / 1758 / 7D16)
$end of line
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