Non-Capturing Group(?:max|min) maxthe literal text max (case sensitive) minthe literal text min (case sensitive) \sany whitespace character
\(the literal ( (4010 / 508 / 2816)
\s*any whitespace character, repeated any number of times
\d+a digit, repeated at least once
Non-Capturing Group(?:\s*,\s*\d+)* *repeats the group contents below any number of times:
\s*any whitespace character, repeated any number of times
,the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
\d+a digit, repeated at least once
\s*any whitespace character, repeated any number of times
\)the literal ) (4110 / 518 / 2916)