\S+?any non-whitespace character, repeated at least once
=the literal = (6110 / 758 / 3D16)
Negated Character Class[^'"] 'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
\S*any non-whitespace character, repeated any number of times
Negated Character Class[^'"\s] 'the literal ' (3910 / 478 / 2716)
"the literal " (3410 / 428 / 2216)
\sany whitespace character
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