.net 正则表达式应用

前端之家收集整理的这篇文章主要介绍了.net 正则表达式应用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public class AustraliaMobileFixing { private readonly string FullMobileFormat = @"^04\d{8}$"; private readonly string MobileFormat = @"^\d{8}$"; public string FixAuMobile(string mobileNumber) { if (mobileNumber.IsNotNullOrEmpty()) { if (Regex.IsMatch(mobileNumber,MobileFormat,RegexOptions.IgnoreCase,TimeSpan.FromMilliseconds(250))) { IConfigureTheSite siteConfig=new SiteConfiguration(); return Regex.Replace((siteConfig.GetValue("AustraliaMobilePrefix") + mobileNumber),@"\s+",string.Empty); } } return mobileNumber; } } 原文链接:https://www.f2er.com/regex/361760.html

猜你在找的正则表达式相关文章