Datethe literal text Date (case sensitive) \sany whitespace character
Ofthe literal text Of (case sensitive) \sany whitespace character
Incidentthe literal text Incident (case sensitive) \:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
Group myDate(?<myDate>[\S]+) +matches at least one character from the set below:
\Sany non-whitespace character
\s*any whitespace character, repeated any number of times
.*?any character (except for line terminators), repeated any number of times
Timethe literal text Time (case sensitive) \sany whitespace character
ofthe literal text of (case sensitive) \sany whitespace character
Incidentthe literal text Incident (case sensitive) \:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
\d{2}a digit, repeated exactly 2 times
\d{2}a digit, repeated exactly 2 times
g modifier: global. Finds all matches instead of stopping after the first