\d+a digit, repeated at least once
\.?optionally matches the literal . (4610 / 568 / 2E16)
\d*a digit, repeated any number of times
\*?optionally matches the literal * (4210 / 528 / 2A16)
xthe literal x (12010 / 1708 / 7816) (case sensitive)
Xthe literal X (8810 / 1308 / 5816) (case sensitive)
\^the literal ^ (9410 / 1368 / 5E16)
\d+a digit, repeated at least once