\ban ASCII word boundary
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
Negated Character Class[^_]* *matches any number of characters outside the set below:
_the literal _ (9510 / 1378 / 5F16)
_the literal _ (9510 / 1378 / 5F16)
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 at least once
\S+any non-whitespace character, repeated at least once
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string