^ # beginning of line
\d{2,3} # 2 or 3 digits
(?: # start non capture group
, # a comma
\d{2,3} # 2 or 3 digits
)* # end group may appear 0 or more times
$ # end of line
Если вам не нужны числа, начинающиеся с 0
, например 025
^ # beginning of line
[1-9] # digit fomr 1 to 9
\d # 1 digit
\d? # 1 optional digit
(?: # start non capture group
, # a comma
[1-9] # digit fomr 1 to 9
\d # 1 digit
\d? # 1 optional digit
)* # end group may appear 0 or more times
$ # end of line
DEMO