^start of string
\S+any non-whitespace character, repeated at least once
\s+any whitespace character, repeated at least once
\S+any non-whitespace character, repeated at least once
\s+any whitespace character, repeated at least once
Negated Character Class[^,]+ +matches at least one character outside the set below:
,the literal , (4410 / 548 / 2C16)
,the literal , (4410 / 548 / 2C16)
\s*any whitespace character, repeated any number of times
Negated Character Class[^:]+ +matches at least one character outside the set below:
:the literal : (5810 / 728 / 3A16)
:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
.*any character (except for line terminators), repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first