userthe literal text user (case sensitive) \sany whitespace character
\'the literal ' (3910 / 478 / 2716)
Negated Character Class[^']+ +matches at least one character outside the set below:
'the literal ' (3910 / 478 / 2716)
'the literal ' (3910 / 478 / 2716)
\sany whitespace character
hasthe literal text has (case sensitive) \sany whitespace character
Group Result(?<Result>\w+) \w+any word character, repeated at least once
\sany whitespace character
authenticationthe literal text authentication (case sensitive) .*any character (except for line terminators), repeated any number of times
Group 3(count\sequals\s(?<Count>\d+))? ?repeats the group contents below at most once:
countthe literal text count (case sensitive) \sany whitespace character
equalsthe literal text equals (case sensitive) \sany whitespace character
\d+a digit, 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