\d+a digit, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\s+any whitespace character, repeated at least once
\[the literal [ (9110 / 1338 / 5B16)
Negated Character Class[^]]+ +matches at least one character outside the set below:
]the literal ] (9310 / 1358 / 5D16)
\]the literal ] (9310 / 1358 / 5D16)
\s*any whitespace character, repeated any number of times
`the literal ` (9610 / 1408 / 6016)
Negated Character Class[^`]* *matches any number of characters outside the set below:
`the literal ` (9610 / 1408 / 6016)
`the literal ` (9610 / 1408 / 6016)
\s*any whitespace character, repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first