Java手机号隐藏中间4位和邮箱隐藏,身份证隐藏

时间:2021-11-30 06:47:24

1.Java代码中隐藏

//隐藏手机号码中间四位
String phoneNumber = "15567893456";
String resultPhone= phoneNumber.replaceAll("(\d{3})\d{4}(\d{4})","$1****$2");
System.out.println("隐藏后的手机号:"   resultPhone);
//隐藏邮箱
String email = "[email protected]";
String resultEmail = email.replaceAll("(\w?)(\w )(\w)(@\w \.[a-z] (\.[a-z] )?)", "$1****$3$4");
System.out.println("隐藏后的邮箱:"   resultEmail);
//隐藏身份证
String idCard = "420116199302220456";
String resultIdCard = idCard.replaceAll("(\d{4})\d{10}(\w{4})","$1*****$2");
System.out.println("隐藏后的身份证号:"   resultIdCard);

2.使用MySql查询时隐藏。

这里会使用Mysqlinsert函数

# insert(a,n1,n2,str)的参数解析如下
@ a:字段名.
@ n1:开始替换的位置.
@ n2:替换的长度.
@ str:替换后的字符串.

实际使用

select insert(phone,4,4,****) as phone from user

原文:https://www.jianshu.com/p/d8c70f67c5b5