\w+any word character, repeated at least once
\[the literal [ (9110 / 1338 / 5B16)
+matches at least one character from the set below:
\wany word character
\sany whitespace character
\]the literal ] (9310 / 1358 / 5D16)
:the literal : (5810 / 728 / 3A16)
+matches at least one character from the set below:
\wany word character
\Wany non-word character
$end of string, or before its final line terminator
g modifier: global. Finds all matches instead of stopping after the first
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters