>the literal > (6210 / 768 / 3E16)
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
Positive Lookahead(?=[0.]*[1-9]) *matches any number of characters from the set below:
0the literal 0 (4810 / 608 / 3016)
.the literal . (4610 / 568 / 2E16)
1-9one character from 1 (4910) to 9 (5710)
\d+a digit, repeated at least once
Non-Capturing Group(?:\.\d+)?+ ?+repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
\h+any horizontal whitespace character, repeated at least once
Dollarthe literal text Dollar (case sensitive) <the literal < (6010 / 748 / 3C16)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string