^start of line
Negated Character Class[^\S\r\n]* *matches any number of characters outside the set below:
\Sany character that is not Unicode whitespace
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once
/the literal / (4710 / 578 / 2F16)
\d+a Unicode decimal digit, repeated at least once