用户信息脱敏处理Go语言实现对用户的姓名、电话号码、邮箱、身份证等信息进行脱敏处理。 import ( "regexp" "strings" ) // 匹配 手机号,邮箱,中文,身份证等等 进行脱敏处理 func HideStar(str string2020-02-02 代码Golang