^start of string
.any Unicode character (except for line terminators)
.*any Unicode character (except for line terminators), repeated any number of times
Non-Capturing Group(?:(\d+)mm - ) \d+a Unicode decimal digit, repeated at least once
mm - the literal text mm - (case sensitive) .*any Unicode character (except for line terminators), repeated any number of times
\(the literal ( (4010 / 508 / 2816)
+matches at least one character from the set below:
\da Unicode decimal digit
\.the literal . (4610 / 568 / 2E16)
\"the literal " (3410 / 428 / 2216)
x the literal text x (case sensitive) +matches at least one character from the set below:
\da Unicode decimal digit
\.the literal . (4610 / 568 / 2E16)
\"the literal " (3410 / 428 / 2216)
\)the literal ) (4110 / 518 / 2916)
g modifier: global. Finds all matches instead of stopping after the first