\ban ASCII word boundary
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
:the literal : (5810 / 728 / 3A16)
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
\da digit
:the literal : (5810 / 728 / 3A16)
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
:the literal : (5810 / 728 / 3A16)
\d+a digit, repeated at least once
\ban ASCII word boundary
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
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters