\na line-feed (newline) character (ASCII 10)
\s{4}any whitespace character, repeated exactly 4 times
\"the literal " (3410 / 428 / 2216)
logUserthe literal text logUser (case sensitive) \"the literal " (3410 / 428 / 2216)
Positive Lookahead(?=.*\:) .*any character (except for line terminators), repeated any number of times
\:the literal : (5810 / 728 / 3A16)
+matches at least one character from the set below:
\sany whitespace character
\:the literal : (5810 / 728 / 3A16)
Negated Character Class[^\,}]+? +?matches at least one character outside the set below:
\,the literal , (4410 / 548 / 2C16)
}the literal } (12510 / 1758 / 7D16)
\,the literal , (4410 / 548 / 2C16)
\}the literal } (12510 / 1758 / 7D16)
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string