码迷,mamicode.com
首页 > 其他好文 > 详细

常用正则

时间:2018-04-04 20:46:41      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:post   pos   reg   rdf   fun   protected   protect   style   turn   

1、手机号码:/^[1][34578][0-9]{9}$/
2、用户姓名:/^[a-zA-Z0-9\x{4e00}-\x{9fa5}]+$|^[a-zA-Z0-9\x{4e00}-\x{9fa5}][a-zA-Z0-9_\s\ \x{4e00}-\x{9fa5}\.]*[a-zA-Z0-9\x{4e00}-\x{9fa5}]+$/u

3、php以四位,空格补填: 

    //处理卡号的显示
    protected function cardFormat($card_num){
        $count = floor(strlen($card_num)/4);
        $patten = ‘/‘.str_repeat(‘([\w]{4})‘,$count).‘([\w]{0,})?/‘;
        preg_match($patten, $card_num,$match);
        unset($match[0]);
        return implode(‘ ‘, $match);
    }

 

常用正则

标签:post   pos   reg   rdf   fun   protected   protect   style   turn   

原文地址:https://www.cnblogs.com/xiong63/p/8718641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!