\d+a digit, repeated at least once
Non-Capturing Group(?:\.\d+)* *repeats the group contents below any number of times:
\.the literal . (4610 / 568 / 2E16)
\d+a digit, repeated at least once
*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
\w+any word character, repeated at least once
\.the literal . (4610 / 568 / 2E16)
g modifier: global. Finds all matches instead of stopping after the first