标签:option 表达式 .text 正则 regex 正则表达 ring ext test
方法一 :根据未知替换
String subStr = phone.Substring(3, 4);
oldcellphone.Text = phone.Replace(subStr, "****");
方法二:正则表达式,
Regex re = new Regex("(\\d{3})(\\d{4})(\\d{4})", RegexOptions.None);
var test= re.Replace("12345678901", "$1****$3");
标签:option 表达式 .text 正则 regex 正则表达 ring ext test
原文地址:https://www.cnblogs.com/li-lun/p/9401506.html