^start of line
\)the literal ) (4110 / 518 / 2916)
the literal (3210 / 408 / 2016)
\S+any non-whitespace character, repeated at least once
.+any character, repeated at least once
Answer: the literal text Answer: (case sensitive) \1the text saved by group 1
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