Non-Capturing Group(?:<div[^>]*>|\G(?!\A)) 1st Alternative<div[^>]*> <divthe literal text <div (case sensitive) Negated Character Class[^>]* *matches any number of characters outside the set below:
>the literal > (6210 / 768 / 3E16)
>the literal > (6210 / 768 / 3E16)
\Gstart of current search
Non-Capturing Group(?:(?!</div>).)*? *?repeats the group contents below any number of times:
Negative Lookahead(?!</div>) </div>the literal text </div> (case sensitive) .any character
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
\d{1,9}a digit, repeated between 1 and 9 times
\.the literal . (4610 / 568 / 2E16)
\d{2}a digit, repeated exactly 2 times
g modifier: global. Finds all matches instead of stopping after the first
s modifier: single line. Allows a dot to match line terminators