<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$p = '/\w+@\w+\.\w+)/';
preg_match($p,$subject,$matches);
print_r($matches[1]);
哪里的问题啊
$p 里 只有一个)符号 是准备匹配‘)’符号吗?还是忘记写‘(’ 这个符号了
$p = "/\w+\@\w+\.(com|cn)/"; preg_match($p, $subject, $matches); echo $matches[0];
你试一下,我的编译通过了
$pattern = '/[my email is ](\w+@\w+\.\w+)/';
preg_match($pattern,$subject,$matches);
print_r($matches[1]);