*repeats the group contents below any number of times:
\d+a Unicode decimal digit, repeated at least once
\sa Unicode whitespace character
A-Zone character from A (6510) to Z (9010) (case sensitive)
\d+a Unicode decimal digit, repeated at least once
Non-Capturing Group(?:[,-]\s?[A-Z]\d+)* *repeats the group contents below any number of times:
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\s?optionally matches a Unicode whitespace character
A-Zone character from A (6510) to Z (9010) (case sensitive)
\d+a Unicode decimal digit, repeated at least once