System Message: the literal text System Message: (case sensitive) \w+any word character, repeated at least once
is ready to chatthe literal text is ready to chat (case sensitive) .*?any character, repeated any number of times
+matches at least one character from the set below:
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
+matches at least one character from the set below:
\da digit
\/the literal / (4710 / 578 / 2F16)
\s+any whitespace character, repeated at least once
+matches at least one character from the set below:
\da digit
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\w+any word character, repeated at least once
\s+any whitespace character, repeated at least once
+matches at least one character from the set below:
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
(?P=agent)the text saved by group agent
+matches at least one character from the set below:
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
Group agentFirstResponse(?<agentFirstResponse>.*?) .*?any character, repeated any number of times
+matches at least one character from the set below:
\ra carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
+matches at least one character from the set below:
\da digit
\/the literal / (4710 / 578 / 2F16)
\s+any whitespace character, repeated at least once
+matches at least one character from the set below:
\da digit
:the literal : (5810 / 728 / 3A16)
\s+any whitespace character, repeated at least once
\w+any word character, 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
s modifier: single line. Allows a dot to match line terminators