android手机号中间四位显示*号
2018-05-16 本文已影响0人
小婷婷tt
public static String getStarMobile(String mobile) {
if (!TextUtils.isEmpty(mobile)) {
if (mobile.length() >=11)
return mobile.substring(0,3) +"****" + mobile.substring(7, mobile.length());
}else {
return "";
}
return mobile;
}