原答案中的 \- 是什么意思?
$subject = "my email is spark@imooc.com"; $pattern = '/[\w\-]+@\w+\.\w+/'; preg_match($pattern, $subject, $matches); echo $matches[0];
原答案变量$pattern中的 \- 是什么意思?
$subject = "my email is spark@imooc.com"; $pattern = '/[\w\-]+@\w+\.\w+/'; preg_match($pattern, $subject, $matches); echo $matches[0];
原答案变量$pattern中的 \- 是什么意思?
2019-02-06
举报