Positive Lookbehind(?<=["\s]) "the literal " (3410 / 428 / 2216)
\sany whitespace character
Negated Character Class[^\s]+? +?matches at least one character outside the set below:
\sany whitespace character
\s?optionally matches any whitespace character
=the literal = (6110 / 758 / 3D16)
\s?optionally matches any whitespace character
"the literal " (3410 / 428 / 2216)
\$the literal $ (3610 / 448 / 2416)
\{the literal { (12310 / 1738 / 7B16)
Non-Capturing Group(?:\w*) \w*any word character, repeated any number of times
\}the literal } (12510 / 1758 / 7D16)
"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