(?ms)applies the following effective flags to the remainder of the pattern: gms m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
s modifier: single line. Allows a dot to match line terminators
LEVEL:the literal text LEVEL: (case sensitive) \s+any whitespace character, repeated at least once
.*any character, repeated any number of times
PIDthe literal text PID (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\sany whitespace character
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
TIDthe literal text TID (case sensitive) \sany whitespace character
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
PROCthe literal text PROC (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
INSTANCE:the literal text INSTANCE: (case sensitive) \s+any whitespace character, repeated at least once
Group INSTANCE(?<INSTANCE>\w+) \w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
NODEthe literal text NODE (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
DBthe literal text DB (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
APPHDLthe literal text APPHDL (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
Group APPHDL(?<APPHDL>[^ ]+) Negated Character Class[^ ]+ +matches at least one character outside the set below:
the literal (3210 / 408 / 2016)
\s+any whitespace character, repeated at least once
APPID:the literal text APPID: (case sensitive) \s+any whitespace character, repeated at least once
Group APPID(?<APPID>[^ ]+) Negated Character Class[^ ]+ +matches at least one character outside the set below:
the literal (3210 / 408 / 2016)
UOWIDthe literal text UOWID (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
ACTID:the literal text ACTID: (case sensitive) \s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
AUTHIDthe literal text AUTHID (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
HOSTNAME:the literal text HOSTNAME: (case sensitive) \s+any whitespace character, repeated at least once
Group HOSTNAME(?<HOSTNAME>[^ ]+) Negated Character Class[^ ]+ +matches at least one character outside the set below:
the literal (3210 / 408 / 2016)
\s+any whitespace character, repeated at least once
EDUIDthe literal text EDUID (case sensitive) \s+any whitespace character, repeated at least once
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\d+a digit, repeated at least once
\s+any whitespace character, repeated at least once
EDUNAME:the literal text EDUNAME: (case sensitive) \s+any whitespace character, repeated at least once
Group EDUNAME(?<EDUNAME>.*) .*any character, repeated any number of times
\s+any whitespace character, repeated at least once
FUNCTION:the literal text FUNCTION: (case sensitive) \s+any whitespace character, repeated at least once
Group FUNCTION(?<FUNCTION>\w+) \w+any word character, repeated at least once
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