Non-Capturing Group(?:19|20) \d{2}a digit, repeated exactly 2 times
the literal (3210 / 408 / 2016)
+matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
the literal (3210 / 408 / 2016)
Non-Capturing Group(?:0?[1-9]|[12]\d|3[01]) 0?optionally matches the literal 0 (4810 / 608 / 3016)
1-9one character from 1 (4910) to 9 (5710)
1the literal 1 (4910 / 618 / 3116)
2the literal 2 (5010 / 628 / 3216)
\da digit
3the literal 3 (5110 / 638 / 3316)
0the literal 0 (4810 / 608 / 3016)
1the literal 1 (4910 / 618 / 3116)
the literal (3210 / 408 / 2016)
+matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)