\d{4}a Unicode decimal digit, repeated exactly 4 times
-the literal - (4510 / 558 / 2D16)
2nd Alternative — matches an empty string
\d{2}a Unicode decimal digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
2nd Alternative — matches an empty string
\d{2}a Unicode decimal digit, repeated exactly 2 times
Tthe literal T (8410 / 1248 / 5416) (case sensitive)
\d{2}a Unicode decimal digit, repeated exactly 2 times
Group 3((:\d{2}|):\d{2}|) 1st Alternative(:\d{2}|):\d{2} :the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
2nd Alternative — matches an empty string
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
2nd Alternative — matches an empty string
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