\d{1,2}a digit, repeated between 1 and 2 times
,the literal , (4410 / 548 / 2C16)
Group 2(\d{1,2}\/\d{1,2}\/\d{1,2}) \d{1,2}a digit, repeated between 1 and 2 times
\/the literal / (4710 / 578 / 2F16)
\d{1,2}a digit, repeated between 1 and 2 times
\/the literal / (4710 / 578 / 2F16)
\d{1,2}a digit, repeated between 1 and 2 times
,the literal , (4410 / 548 / 2C16)
Group 3(\d{1,2}\:\d{1,2}\:\d{1,2}) \d{1,2}a digit, repeated between 1 and 2 times
\:the literal : (5810 / 728 / 3A16)
\d{1,2}a digit, repeated between 1 and 2 times
\:the literal : (5810 / 728 / 3A16)
\d{1,2}a digit, repeated between 1 and 2 times
,the literal , (4410 / 548 / 2C16)
+matches at least one character from the set below:
\wany word character
*repeats the group contents below any number of times:
\sany whitespace character
\w+any word character, repeated at least once
,the literal , (4410 / 548 / 2C16)
Group 6((\d{1,3})(\.\d{1,3}){3})? ?repeats the group contents below at most once:
\d{1,3}a digit, repeated between 1 and 3 times
{3}repeats the group contents below exactly 3 times:
\.the literal . (4610 / 568 / 2E16)
\d{1,3}a digit, repeated between 1 and 3 times
,the literal , (4410 / 548 / 2C16)
?repeats the group contents below at most once:
+matches at least one character from the set below:
\wany word character
|the literal | (12410 / 1748 / 7C16)
\.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
Group 10([A-F|a-f|0-9]{12})? ?repeats the group contents below at most once:
Character Class[A-F|a-f|0-9]{12} {12}matches exactly 12 characters from the set below:
A-Fone character from A (6510) to F (7010) (case sensitive)
|the literal | (12410 / 1748 / 7C16)
a-fone character from a (9710) to f (10210) (case sensitive)
|the literal | (12410 / 1748 / 7C16)
0-9one character from 0 (4810) to 9 (5710)
,the literal , (4410 / 548 / 2C16)
.*any character (except for line terminators), repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first