手机号码中间四位数显示****
2019-07-18 本文已影响2人
没_有_人
方法一:正则表达式
function replaceP(phone){
var rep = /(\d{3})\d{4}(\d{3})/;
return phone.replace(rep,'$1****$2');
}
方法二:subtr
function subP(phone){
return str.substr(0,3)+'****'+str.substr(7);
}
方法一:正则表达式
function replaceP(phone){
var rep = /(\d{3})\d{4}(\d{3})/;
return phone.replace(rep,'$1****$2');
}
方法二:subtr
function subP(phone){
return str.substr(0,3)+'****'+str.substr(7);
}