srcthe literal text src (case sensitive) \s*any whitespace character, repeated any number of times
=the literal = (6110 / 758 / 3D16)
\s*any whitespace character, repeated any number of times
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^_]* *matches any number of characters outside the set below:
_the literal _ (9510 / 1378 / 5F16)
_the literal _ (9510 / 1378 / 5F16)
Negated Character Class[^']* *matches any number of characters outside the set below:
'the literal ' (3910 / 478 / 2716)
'the literal ' (3910 / 478 / 2716)
\s*any whitespace character, repeated any number of times
>the literal > (6210 / 768 / 3E16)
g modifier: global. Finds all matches instead of stopping after the first