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

时间:2018-05-22 02:37:52

标签: php regex preg-match

我想说我想将粗体内容放入名为 $ question_text 的变量中。

1} 天空是什么颜色的:
A)答案A.
B)答案B.
C)答案C

答案:A

如何使用preg_match来做到这一点?

我试过了:

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

但它只给了我第一行:**天空是什么颜色:**

我做错了什么?

1 个答案:

答案 0 :(得分:0)

Top         Bill    101.18

Middle      Him    72.62

Bottom      Slim    83.98

为我工作!