EDTthe literal text EDT (case sensitive) \sany whitespace character
\d*a digit, repeated any number of times
\sany whitespace character
Group USERNAME(?<USERNAME>[^\s]+) Negated Character Class[^\s]+ +matches at least one character outside the set below:
\sany whitespace character
\s*any whitespace character, repeated any number of times
Group STATUS(?<STATUS>\w+( & \w+)?) \w+any word character, repeated at least once
?repeats the group contents below at most once:
\w+any word character, repeated at least once
\s*any whitespace character, repeated any number of times
Group EXPIRY(?<EXPIRY>\d+-[A-Z]+-\d+)? ?repeats the group contents below at most once:
\d+a digit, repeated at least once
-the literal - (4510 / 558 / 2D16)
+matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
-the literal - (4510 / 558 / 2D16)
\d+a digit, repeated at least once
\s*any whitespace character, repeated any number of times
Group ROLE(?<ROLE>[A-Za-z0-9_-]+) Character Class[A-Za-z0-9_-]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
_the literal _ (9510 / 1378 / 5F16)
-the literal - (4510 / 558 / 2D16)
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