<the literal < (6010 / 748 / 3C16)
\/?optionally matches the literal / (4710 / 578 / 2F16)
Non-Capturing Group(?:\b(?!(?:div|tag)\b)) \ban ASCII word boundary
Negative Lookahead(?!(?:div|tag)\b) Non-Capturing Group(?:div|tag) divthe literal text div (case sensitive) tagthe literal text tag (case sensitive) \ban ASCII word boundary
Character Class[a-zA-Z0-9]+ +matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case sensitive)
A-Zone character from A (6510) to Z (9010) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
.*?any character (except for line terminators), repeated any number of times
>the literal > (6210 / 768 / 3E16)
g modifier: global. Finds all matches instead of stopping after the first