<?php $subject = "my email is spark@imooc.com"; //在这里补充代码,实现正则匹配,并输出邮箱地址 $pattern = '/[a-z\-]+@\w+\.\w+/'; preg_match($pattern, $subject, $matches); echo $matches[0];
不能理解同问\- 是什么意思。!
<?php $subject = "my email is spark@imooc.com"; //在这里补充代码,实现正则匹配,并输出邮箱地址 $pattern = '/[a-z\-]+@\w+\.\w+/'; preg_match($pattern, $subject, $matches); echo $matches[0];
不能理解同问\- 是什么意思。!
2014-09-11
举报