func MobileReplaceRepl(str string) string {
re, _ := regexp.Compile("(\\d{3})(\\d{4})(\\d{4})")
return re.ReplaceAllString(str, "$1****$3")
}
测试结果:
MobileReplaceRepl("18223270004")
182****7004
func MobileReplaceRepl(str string) string {
re, _ := regexp.Compile("(\\d{3})(\\d{4})(\\d{4})")
return re.ReplaceAllString(str, "$1****$3")
}
测试结果:
MobileReplaceRepl("18223270004")
182****7004
本文标题:goalng 手机号码 中间部分 替换为 * 星号
本文链接:https://www.haomeiwen.com/subject/aclfkftx.html
网友评论