当前位置: 代码迷 >> PHP >> 再请问一个正则表达式
  详细解决方案

再请问一个正则表达式

热度:99   发布时间:2016-04-29 00:00:24.0
再请教一个正则表达式!
下面的字段,怎么才能截取到Steven Liu,[email protected]?这个问题是面向一类字段的!
Registrant [3451728]:

  Steven Liu [email protected]

  Beijing Chuangrui wenhua chuangmei youxian gongsi


------解决方案--------------------
preg_match_all('#Registrant \[3451728\]:\s+(\w+\s+\w+)#s',$s,$m);
print_r($m);