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;
}
屏蔽电话号码
最新推荐文章于 2022-11-14 20:46:21 发布