屏蔽电话号码

private static final String REGEX_FIXEDPHONE = "^((010|02\\d|0[3-9]\\d{2})-?)?\\d{6,8}$";
private static final Pattern PATTERN_ZIPCODE = Pattern.compile(REGEX_FIXEDPHONE);
/**
     * 屏蔽电话号码,固定电话格式如:0536-5****23 手机号码格式如:1********89; 不正确定的电话号码,超过三位数字按手机号码格式(截取11位)显示,三位数字以内直接显示
     * 
     * @param phoneNum
     * @return
     */
    public static String getPhoneNumMark(String phoneNum) {
        String result = "";
        int beginIndex = 0;
        int endIndex = 0;
        if (phoneNum == null || "".equals(phoneNum)) {
            return result;
        }
        if (phoneNum.matches(REGEX_FIXEDPHONE)) { // 固定电话
            Matcher matcher = PATTERN_ZIPCODE.matcher(phoneNum);
            if (matcher.find()) {
                String zipCode = matcher.group(1); // 找出区号
                if (zipCode != null) { // 有区号的
                    beginIndex = zipCode.length() + 1; // 从区号+1位开始,后面隐藏
                    endIndex = phoneNum.length() - 2; // 保留最后两位
                } else { // 没有区号的
                    beginIndex = 1;
                    endIndex = phoneNum.length() - 2;
                }
            }
        } else { // 不是固话,显示第一位和最后两位,其余隐藏
            beginIndex = 1;
            if (phoneNum.length() > 11) { // 超过11位的截取11位数字
                phoneNum = phoneNum.substring(0, 11);
            }
            endIndex = phoneNum.length() - 2;
        }

        result = phoneNum.substring(0, beginIndex);
        if (beginIndex < endIndex) {
            for (int i = beginIndex; i < endIndex; i++) {
                result += "*";
            }
            result += phoneNum.substring(endIndex);
        } else {
            result = phoneNum;
        }
        return result;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值