Trythe literal text Try (case sensitive) Negated Character Class[^\:]+ +matches at least one character outside the set below:
\:the literal : (5810 / 728 / 3A16)
\:the literal : (5810 / 728 / 3A16)
\sany whitespace character
Group file(?<file>[^\v]+)? ?repeats the group contents below at most once:
Negated Character Class[^\v]+ +matches at least one character outside the set below:
\vany vertical whitespace character
\vany vertical whitespace character
Uploadthe literal text Upload (case sensitive) \sany whitespace character
Filethe literal text File (case sensitive) \sany whitespace character
Group msg(?<msg>[^\.]+\.[^\s]+\s[^\v]+) Negated Character Class[^\.]+ +matches at least one character outside the set below:
\.the literal . (4610 / 568 / 2E16)
\.the literal . (4610 / 568 / 2E16)
Negated Character Class[^\s]+ +matches at least one character outside the set below:
\sany whitespace character
\sany whitespace character
Negated Character Class[^\v]+ +matches at least one character outside the set below:
\vany vertical whitespace character
\v{2}any vertical whitespace character, repeated exactly 2 times
Closingthe literal text Closing (case sensitive) Negated Character Class[^\d]+ +matches at least one character outside the set below:
\da digit
Group time(?<time>[^(on)]+) Negated Character Class[^(on)]+ +matches at least one character outside the set below:
(the literal ( (4010 / 508 / 2816)
othe literal o (11110 / 1578 / 6F16) (case sensitive)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
)the literal ) (4110 / 518 / 2916)
onthe literal text on (case sensitive) \sany whitespace character
Group date(?<date>[^\$]+) Negated Character Class[^\$]+ +matches at least one character outside the set below:
\$the literal $ (3610 / 448 / 2416)
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