\d{5}a Unicode decimal digit, repeated exactly 5 times
-the literal - (4510 / 558 / 2D16)
\d{4}a Unicode decimal digit, repeated exactly 4 times
Positive Lookahead(?=[^\d-]|$) Negated Character Class[^\d-] \da Unicode decimal digit
-the literal - (4510 / 558 / 2D16)