本文章主要介绍了js 隐藏邮箱中间几位,具有不错的的参考价值,希望对您有所帮助,如解说有误或未考虑完全的地方,请您留言指出,谢谢!
// 替换邮箱字符
const regEmail = (email) => {
if (String(email).indexOf('@') > 0) {
let str = email.split('@'),
_s = ''
if (str[0].length > 3) {
for (let i = 0; i < str[0].length - 3; i++) {
_s += '*'
}
}
var new_email = str[0].substr(0, 3) + _s + '@' + str[1]
}
return new_email
}
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/228259.html