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

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

 

标题 Java 正则表达式
内容
    1、车牌号:
    /**
    *
    * @description:验证车牌号
    * @param carNum
    * 豫A106EK
    * @return 合法:true 不合法:false
    */
    public static boolean validateCarNum(String carNum) {
    boolean result = false;
    String[] provence = new String[] { "京", "津", "冀", "晋", "辽", "吉", "黑", "沪", "苏", "浙", "皖", "闽", "赣", "鲁", "豫", "鄂", "湘", "粤", "桂", "琼", "渝",
    "川", "黔", "滇", "藏", "陕", "甘", "青", "宁", "新", "港", "澳", "蒙" };
    String reg = "[u4e00-u9fa5]{1}[A-Z]{1}[A-Z_0-9]{5}";
    boolean firstChar = false;
    if (carNum.length() > 0) {
    firstChar = Arrays.asList(provence).contains(carNum.substring(0, 1));
    }
    try {
    Pattern p = Pattern.compile(reg);
    Matcher m = p.matcher(carNum);
    if (m.matches() && firstChar) {
    result = true;
    } else {
    result = false;
    }
    } catch (Exception e) {
    e.printStackTrace();
    }
    return result;
    }
    2、手机号码:
    /**
    *
    * @description:验证手机号码
    * @param mobileNum 15516985859
    * @return 合法:true 不合法:false
    */
    public static boolean isMobileNum(String mobileNum) {
    boolean result = false;
    try {
    Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\D])|(18[0,5-9]))\d{8}$");
    Matcher m = p.matcher(mobileNum);
    result = m.matches();
    } catch (Exception e) {
    e.printStackTrace();
    }
    return result;
    }
    手机号+固定电话:010-1111111,15516985859,0377-1111111
    //java检测是否为电话号码(手机、固定电话验证)
    String legalPhone = "";
    String regExp ="^((13[0-9])|(15[^4,\D])|(18[0,5-9]))\d{8}|[0]{1}[0-9]{2,3}-[0-9]{7,8}$";
    Pattern p = Pattern.compile(regExp);
    Matcher m = p.matcher(importPotentialBFOs[i].getLegalPhone());
    if(m.find()){ //注意:m.find只能用一次,第二次调用后都为false
    legalPhone = importPotentialBFOs[i].getLegalPhone();
    uploadTmp.setLegalTelephone(legalPhone);
    }else{
    throw new BizException("联系电话格式错误!");
    }
随便看

 

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

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/13 5:33:06