^start of line
\d+a digit, repeated at least once
-the literal - (4510 / 558 / 2D16)
0the literal 0 (4810 / 608 / 3016)
1-9one character from 1 (4910) to 9 (5710)
1the literal 1 (4910 / 618 / 3116)
0the literal 0 (4810 / 608 / 3016)
1the literal 1 (4910 / 618 / 3116)
2the literal 2 (5010 / 628 / 3216)
-the literal - (4510 / 558 / 2D16)
Group 3(0[1-9]|[12]\d|3[01]) 0the 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 _ (9510 / 1378 / 5F16)
0the literal 0 (4810 / 608 / 3016)
1the literal 1 (4910 / 618 / 3116)
\da digit
2the literal 2 (5010 / 628 / 3216)
0-3one character from 0 (4810) to 3 (5110)
:the literal : (5810 / 728 / 3A16)
0-5one character from 0 (4810) to 5 (5310)
\da digit
:the literal : (5810 / 728 / 3A16)
0-5one character from 0 (4810) to 5 (5310)
\da digit
?repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
Group 8(([Zz])|([\+|\-]([01]\d+|2[0-3]))) g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string