Assigned AA: the literal text Assigned AA: (case sensitive) Group assigned_aa(?<assigned_aa>[\w\W]+?) +?matches at least one character from the set below:
\wany word character
\Wany non-word character
\s+any whitespace character, repeated at least once
Client: the literal text Client: (case sensitive) Group client(?<client>[\w\W]+?) +?matches at least one character from the set below:
\wany word character
\Wany non-word character
\s+any whitespace character, repeated at least once
Title of Your Question: the literal text Title of Your Question: (case sensitive) Group title(?<title>[\w\W]+?) +?matches at least one character from the set below:
\wany word character
\Wany non-word character
\s+any whitespace character, repeated at least once
Request or Question: the literal text Request or Question: (case sensitive) Group message(?<message>[\w\W]+?) +?matches at least one character from the set below:
\wany word character
\Wany non-word character
\s+any whitespace character, repeated at least once
Attachment:the literal text Attachment: (case sensitive) 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