typethe literal text type (case sensitive) Negative Lookahead(?!3\.) 3the literal 3 (5110 / 638 / 3316)
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
\.the literal . (4610 / 568 / 2E16)
valuethe literal text value (case sensitive) \d+a digit, repeated at least once
=the literal = (6110 / 758 / 3D16)
\Kresets the starting point of the reported match. Any previously consumed characters are no longer included in the final match
\d+a digit, repeated at least once
Positive Lookahead(?=[\s\S]*?type3\.value\1=(\d+)) *?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
type3the literal text type3 (case sensitive) \.the literal . (4610 / 568 / 2E16)
valuethe literal text value (case sensitive) \1the text saved by group 1
=the literal = (6110 / 758 / 3D16)
\d+a digit, repeated at least once
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