+the literal (3210 / 408 / 2016) , repeated at least once
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
*the literal (3210 / 408 / 2016) , repeated any number of times
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
Negative Lookahead(?! *\r?\n) *the literal (3210 / 408 / 2016) , repeated any number of times
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)