*repeats the group contents below any number of times:
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:,\s*)? ?repeats the group contents below at most once:
,the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
\ban ASCII word boundary
\d{1,2}a digit, repeated between 1 and 2 times
\ban ASCII word boundary