accountthe literal text account (case sensitive) \s+any whitespace character, repeated at least once
Group account(?<account>\w+) \w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
withthe literal text with (case sensitive) \s+any whitespace character, repeated at least once
emailthe literal text email (case sensitive) \s+any whitespace character, repeated at least once
Group email(?<email>[^ ]+) Negated Character Class[^ ]+ +matches at least one character outside the set below:
the literal (3210 / 408 / 2016)
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