\ban ASCII word boundary
idthe literal text id (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
\ban ASCII word boundary
Group 1([0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}) Character Class[0-9a-f]{8} {8}matches exactly 8 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
a-fone character from a (9710) to f (10210) (case sensitive)
\ban ASCII word boundary
-the literal - (4510 / 558 / 2D16)
Character Class[0-9a-f]{4} {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
a-fone character from a (9710) to f (10210) (case sensitive)
-the literal - (4510 / 558 / 2D16)
Character Class[0-9a-f]{4} {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
a-fone character from a (9710) to f (10210) (case sensitive)
-the literal - (4510 / 558 / 2D16)
Character Class[0-9a-f]{4} {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
a-fone character from a (9710) to f (10210) (case sensitive)
-the literal - (4510 / 558 / 2D16)
\ban ASCII word boundary
Character Class[0-9a-f]{12} {12}matches exactly 12 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
a-fone character from a (9710) to f (10210) (case sensitive)
\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