package cn.com.goldenwater.dcproj.utils; /** * Created by lhc on 2019-3-6. */ public class TelUtil { public static String getTel(String tel) { String phoneNumber = tel.replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2"); return phoneNumber; } }