Group 1(\d{2}:\d{2}:\d{2}) \d{2}a digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a digit, repeated exactly 2 times
Group 2(\d{2}-\d{2}-\d{2}) \d{2}a digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a digit, repeated exactly 2 times
\w{3}any word character, repeated exactly 3 times
:the literal : (5810 / 728 / 3A16)
\w+?any word character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\w+?any word character, repeated at least once
\.the literal . (4610 / 568 / 2E16)
\w+?any word character, repeated at least once
!the literal ! (3310 / 418 / 2116)
.+?any character (except for line terminators), repeated at least once
,the literal , (4410 / 548 / 2C16)
.+?any character (except for line terminators), repeated at least once
,the literal , (4410 / 548 / 2C16)
.+?any character (except for line terminators), repeated at least once
,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