the literal (3210 / 408 / 2016)
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
\S+any non-whitespace character, repeated at least once
=the literal = (6110 / 758 / 3D16)
?matches at most one character from the set below:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^>"']+ +matches at least one character outside the set below:
>the literal > (6210 / 768 / 3E16)
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
?matches at most one character from the set below:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
>??optionally matches the literal > (6210 / 768 / 3E16)
g modifier: global. Finds all matches instead of stopping after the first
s modifier: single line. Allows a dot to match line terminators