Non-Capturing Group(?:(?!\s|=).)* *repeats the group contents below any number of times:
Negative Lookahead(?!\s|=) \sany whitespace character
=the literal = (6110 / 758 / 3D16)
.any character (except for line terminators)
\s*?any whitespace character, repeated any number of times
=the literal = (6110 / 758 / 3D16)
\s*?any whitespace character, repeated any number of times
?matches at most one character from the set below:
"the literal " (3410 / 428 / 2216)
'the literal ' (3910 / 478 / 2716)
Group 2((?:(?<=")(?:(?<=\\)"|[^"])*|(?<=')(?:(?<=\\)'|[^'])*)|(?:(?!"|')(?:(?!\/>|>|\s).)+)) 1st Alternative(?:(?<=")(?:(?<=\\)"|[^"])*|(?<=')(?:(?<=\\)'|[^'])*) Non-Capturing Group(?:(?<=")(?:(?<=\\)"|[^"])*|(?<=')(?:(?<=\\)'|[^'])*) 1st Alternative(?<=")(?:(?<=\\)"|[^"])* Positive Lookbehind(?<=") "the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:(?<=\\)"|[^"])* *repeats the group contents below any number of times:
Positive Lookbehind(?<=\\) \\the literal \ (9210 / 1348 / 5C16)
"the literal " (3410 / 428 / 2216)
Negated Character Class[^"] "the literal " (3410 / 428 / 2216)
2nd Alternative(?<=')(?:(?<=\\)'|[^'])* Positive Lookbehind(?<=') 'the literal ' (3910 / 478 / 2716)
Non-Capturing Group(?:(?<=\\)'|[^'])* *repeats the group contents below any number of times:
Positive Lookbehind(?<=\\) \\the literal \ (9210 / 1348 / 5C16)
'the literal ' (3910 / 478 / 2716)
Negated Character Class[^'] 'the literal ' (3910 / 478 / 2716)
2nd Alternative(?:(?!"|')(?:(?!\/>|>|\s).)+) Non-Capturing Group(?:(?!"|')(?:(?!\/>|>|\s).)+) Negative Lookahead(?!"|') Non-Capturing Group(?:(?!\/>|>|\s).)+ g modifier: global. Finds all matches instead of stopping after the first