*repeats the group contents below any number of times:
Negated Character Class[^\S\r\n]* *matches any number of characters outside the set below:
\Sany non-whitespace character
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
Negated Character Class[^\S\r\n]* *matches any number of characters outside the set below:
\Sany non-whitespace character
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\d+a digit, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\d{2}a digit, repeated exactly 2 times