*matches any number of characters from the set below:
\Sany non-whitespace character
\d+a digit, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
Non-Capturing Group(?:\.\d+)? ?repeats the group contents below at most once:
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
Non-Capturing Group(?:[\S]*)? ?repeats the group contents below at most once:
*matches any number of characters from the set below:
\Sany non-whitespace character
-alpinethe literal text -alpine (case sensitive) -?optionally matches the literal - (4510 / 558 / 2D16)