安全要求姓名和手机号不能同时完整展示,因此手机号需要进行脱敏处理,即中间4位数字换成星号。
代码为
const reg = /^(\d{3})(\d{4})(\d{4})$/ const text = phone.replace(reg, "$1****$3")
即可。