<?php
$subject = "my email is spark@imooc.com";
$p='/[\w\s]+@[\w\s]+.(com|cn)/';
preg_match($p,$subject,$match);
echo $match[0];
这样可以不呢?
运行一下就知道了。