• 常用正则表达式


    //支持小数及0的金额,小数最多二位  
    String enumber = "^(([1-9][0-9]*|0)|(([1-9][0-9]*|0)\.\d{1,2}))$";
    //支持0的正整数
     String number = "^([1-9][0-9]*|0)$";
    //数字
     String dnumber = "^\d*$";
    //1-30之间的整数
     String pnumber = "^([1-2][0-9]|30|[1-9])$";
    //正整数
     String cnumber = "^([1-9]|[1-9][0-9]*)$";
    //手机号
     String phone = "^1[3|4|5|7|8][0-9]{9}$";
    //固定电话
    // String tel = "^(\(\d{3,4}\)|\d{3,4}-|\s)?\d{7,8}$";
    //单一格式的固定电话
     String tel = "^(\d{3,4}-)\d{7,8}$";
    //身份证,支持15位
    // String idno = "(^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$)|(^[1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{2}[0-9Xx]$)";
    //18位身份证
     String idno = "^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$";
    //15-19位银行卡号
     String cardno = "^\d{15,19}$";
    //汉字
    // String checkname = "^[u4E00-u9FA5A-Za-z]+$";
    //汉字或字母级的姓名,两位以上,英文支持中间有空格
     String checkname = "^([u4e00-u9fa5]{2,}|([A-Z|a-z]*\s?[A-Z|a-z]){2,})$";

  • 相关阅读:
    Python3 模块基础
    Python3 函数小练习
    Python3 函数进阶3
    Python3 函数进阶2
    Python3 函数进阶1
    Python3 函数实践之简易购物系统
    线程之间的通信
    volatile 关键字
    对象锁的同步与异步
    synchronized 关键字
  • 原文地址:https://www.cnblogs.com/hanwuxing/p/8250655.html
Copyright © 2020-2023  润新知