豆包AI编程
智能代码生成与优化,高效提升开发速度与质量!
有时我们会有专业的工具去搜集网站中网页上有email地址的内容,把内容中的邮箱地址给提取出来,下面我们来看个实例,有需要的参考一下。
[php]代码
代码如下 | 复制代码 |
function extract_emails($str){ // This regular expression extracts all emails from a string: $regexp = '/([a-z0-9_.-])+@(([a-z0-9-])+.)+([a-z0-9]{2,4})+/i'; preg_match_all($regexp, $str, $m);
return isset($m[0]) ? $m[0] : array(); }
$test_string = 'This is a test string...
test1@example.org
Test different formats: test2@example.org;
strange formats: test5@example.org test6[at]example.org test7@example.net.org.com test8@ example.org test9@!foo!.org
foobar '; print_r(extract_emails($test_string)); |
php免费学习视频:立即学习
踏上前端学习之旅,开启通往精通之路!从前端基础到项目实战,循序渐进,一步一个脚印,迈向巅峰!
已抢7358个
抢已抢95516个
抢已抢14970个
抢已抢52817个
抢已抢196025个
抢已抢87526个
抢