使用PHP的REGEX(我做错了什么?)

Let's say I want to place the bold content into a variable called $question_text.

1} What color is the sky:
A) Answer A
B) Answer B
C) Answer C

Answer: A

How do I use preg_match to do that?

I tried:

if(preg_match("#}(.*)#", $question, $question_match))
{
    //Extract the question text
    $question_text = trim($question_match[1]);

But it only gives me the first line: **What color is the sky: **

What am I doing wrong?

#(?s)}(.*)+?Answer: [A-Z]#

Worked for me!