Acceptedthe literal text Accepted (case insensitive) \s+a Unicode whitespace character, repeated at least once
passwordthe literal text password (case insensitive) \s+a Unicode whitespace character, repeated at least once
forthe literal text for (case insensitive) \s+a Unicode whitespace character, repeated at least once
Group username(?<username>[^\s]+) Negated Character Class[^\s]+ +matches at least one character outside the set below:
\sa Unicode whitespace character
\s+a Unicode whitespace character, repeated at least once
fromthe literal text from (case insensitive) \s+a Unicode whitespace character, repeated at least once
Group ipaddress(?<ipaddress>[^\s]+) Negated Character Class[^\s]+ +matches at least one character outside the set below:
\sa Unicode whitespace character
\s+a Unicode whitespace character, repeated at least once
portthe literal text port (case insensitive) \s+a Unicode whitespace character, repeated at least once
+matches at least one character from the set below:
0-9one character from 0 (4810) to 9 (5710)
\s+a Unicode whitespace character, repeated at least once
sshthe literal text ssh (case insensitive) 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
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters