^start of line
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
Group 5((?:[[:alpha:]]+)(?:\s+[[:alpha:]]+)*) Non-Capturing Group(?:[[:alpha:]]+) Character Class[[:alpha:]]+ +matches at least one character from the set below:
[:alpha:]an alphabetic character [a-zA-Z]
Non-Capturing Group(?:\s+[[:alpha:]]+)* *repeats the group contents below any number of times:
\s+any whitespace character, repeated at least once
Character Class[[:alpha:]]+ +matches at least one character from the set below:
[:alpha:]an alphabetic character [a-zA-Z]
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
Group 8((?:[[:alpha:]]+)(?:\s+[[:alpha:]]+)*) Non-Capturing Group(?:[[:alpha:]]+) Character Class[[:alpha:]]+ +matches at least one character from the set below:
[:alpha:]an alphabetic character [a-zA-Z]
Non-Capturing Group(?:\s+[[:alpha:]]+)* *repeats the group contents below any number of times:
\s+any whitespace character, repeated at least once
Character Class[[:alpha:]]+ +matches at least one character from the set below:
[:alpha:]an alphabetic character [a-zA-Z]
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
$end of line
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