\d{1,2}a digit, repeated between 1 and 2 times
:the literal : (5810 / 728 / 3A16)
\d{1,2}a digit, repeated between 1 and 2 times
Non-Capturing Group(?:\:\d{1,2}(?:\.\d{1,9})?)? ?repeats the group contents below at most once:
\:the literal : (5810 / 728 / 3A16)
\d{1,2}a digit, repeated between 1 and 2 times
Non-Capturing Group(?:\.\d{1,9})? ?repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
\d{1,9}a digit, repeated between 1 and 9 times