这次给大家带来用正则匹配电话号手机号和邮箱网址,怎么用用正则匹配电话号手机号和邮箱网址?用正则匹配电话号手机号和邮箱网址的注意事项有哪些,下面就是实战案例,一起来看一下。
匹配全部url地址和链接内容
复制代码 代码如下:
$str = "<a href='http://www.baidu.com' target='_blank'>百度</a>http://www<a href='http://www.sina.com' target='_blank'>新浪</a>kod"; preg_match_all("/<a href=([\"\'])(http:\/\/([\w\d\.])+)[^>]*>(.*?)<\/a>/i", $str, $matches); echo "<pre class="brush:php;toolbar:false">"; var_dump($matches[2]); echo "<br />"; var_dump($matches[4]);
匹配邮箱
复制代码 代码如下:
$emails = "wangzhanu@126.comha12wangzhanu@163.com"; preg_match_all("/([a-z0-9_\-\.]+)@(([a-z0-9]+[_\-]?)\.)+[a-z]{2,3}/i", $emails, $matches); var_dump($matches[0]);
匹配手机以及电话号码
复制代码 代码如下:
$tel = "13911112222sf010-44444442dfg18811112222"; preg_match_all("/1[3,5,8]{1}[0-9]{1}[0-9]{8}|0[0-9]{2,3}-[0-9]{7,8}(-[0-9]{1,4})?/", $tel, $matches); var_dump($matches);
相信看了这些案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
相关阅读:
以上是怎样用正则匹配电话号手机号和邮箱网址的详细内容。更多信息请关注PHP中文网其他相关文章!