网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 个好用的正则匹配电话号手机号邮箱网址的方法
内容
    找到一个好用的正则匹配电话和手机号的方法,感谢,在这里分享一下,希望可以帮助更多人
    匹配全部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>";
    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);
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/17 16:42:20