如何使用正则表达式从一组问题中提取问题和选择以及答案
例子 :
1. An FMS system, besides controlling navigation, thrust and auto-nav,
also provides:
a) take-off and landing warnings
* b) dedicated status and warnings
c) GPWS warnings
2. EADI sky and ground display is provided by:
a) synthetic TV signals
* b) raster scan
c) stroke pulse
我需要这样的输出:
$question[0] = "An FMS system, besides controlling navigation, thrust and auto-nav,also provides:";
$choice1[0] = "take-off and landing warnings";
$choice2[0] = "dedicated status and warnings";
$choice3[0] = "GPWS warnings";
$question[1] = "EADI sky and ground display is provided by:";
$choice1[1] = "synthetic TV signals";
$choice2[1] = "raster scan";
$choice3[1] = "stroke pulse";
标志的*
意思是回答我应该写什么模式非常感谢