(?s)applies the following effective flags to the remainder of the pattern: gs s modifier: single line. Allows a dot to match line terminators
<the literal < (6010 / 748 / 3C16)
tthe literal t (11610 / 1648 / 7416) (case sensitive)
hthe literal h (10410 / 1508 / 6816) (case sensitive)
dthe literal d (10010 / 1448 / 6416) (case sensitive)
Negated Character Class[^>]*? *?matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
>the literal > (6210 / 768 / 3E16)
.*?any character, repeated any number of times
<the literal < (6010 / 748 / 3C16)
\/the literal / (4710 / 578 / 2F16)
\1the text saved by group 1
>the literal > (6210 / 768 / 3E16)
(*SKIP)acts like (*PRUNE), but the next unanchored match attempt starts where (*SKIP) was reached instead of at the next subject character
(*FAIL)forces the current match attempt to fail at this position