\d{3}a digit, repeated exactly 3 times
\)?optionally matches the literal ) (4110 / 518 / 2916)
?matches at most one character from the set below:
\sany whitespace character
-the literal - (4510 / 558 / 2D16)
\d{3}a digit, repeated exactly 3 times
?matches at most one character from the set below:
\sany whitespace character
-the literal - (4510 / 558 / 2D16)
\d{3,4}a digit, repeated between 3 and 4 times