這篇文章主要介紹了C#正則函數用法,結合執行個體形式分析了C#基於正則的匹配、替換、提取相關操作技巧,需要的朋友可以參考下
本文執行個體講述了C#正則函數用法。分享給大家供大家參考,具體如下:
System.Text.RegularExpressions 命名空間包含一些類,這些類提供對 .NET Framework Regex引擎的訪問。該命名空間提供Regex功能,可以從運行在 Microsoft .NET Framework 內的任何平台或語言中使用該功能。
1 Regex的常見使用
① 格式匹配
/// <summary>/// 郵箱格式驗證/// </summary>/// <returns></returns>public static string CheckMail(string strEmail){ string result = ""; Regex regex = new Regex(@"[a-zA-Z0-9._%-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}"); Match match = regex.Match(strEmail); if(match.Success) { result = strEmail; } else { result = "無效郵箱"; } return result;}
② 替換匹配內容
/// <summary>/// 轉換日期格式(yyyy-MM-dd 轉 yyyy年MM月dd日)/// </summary>/// <param name="strDate"></param>/// <returns></returns>public static string TransDate(string strDate){ string result = ""; Regex regex = new Regex(@"(\d+)-(\d+)-(\d+)"); if(regex.IsMatch(strDate)) { result = regex.Replace(strDate,"$1年$2月$3日"); } return result;}
③ 提取匹配內容
/// <summary>/// Regex提取和替換內容/// </summary>public static string Contentextract(){ string result = ""; string str = "大家好! <User EntryTime='2010-10-7' Email='zhangsan@163.com'>張三</User> 自我介紹。"; Regex regex = new Regex(@"<User\s*EntryTime='(?<time>[\s\S]*?)'\s+Email='(?<email>[\s\S]*?)'>(?<userName>[\s\S]*?)</User>", RegexOptions.IgnoreCase); Match match = regex.Match(str); if(match.Success) { string userName = match.Groups["userName"].Value; //擷取使用者名稱 string time = match.Groups["time"].Value; //擷取入職時間 string email = match.Groups["email"].Value; //擷取郵箱地址 string strFormat = String.Format("我是:{0},入職時間:{1},郵箱:{2}", userName, time, email); result = regex.Replace(str, strFormat); //替換內容 Console.WriteLine(result); } return result; //結果:大家好!我是張三,入職時間:2010-10-7,郵箱:zhangsan@163.com 自我介紹。}
2 我的一個執行個體
/// <summary>/// 從XML中提取匹配的欄位/// </summary>/// <param name="args"></param>static void Main(string[] args){ string strXml = GetStrXml(); //建立使用者資訊XML Regex userRegex = new Regex(@"<User\s*EntryTime='(?<time>[\s\S]*?)'\s+Email='(?<email>[\s\S]*?)'>(?<userName>[\s\S]*?)</User>", RegexOptions.IgnoreCase); MatchCollection userMatchColl = userRegex.Matches(strXml); if (userMatchColl.Count > 0) { foreach (Match matchItem in userMatchColl) { string userName = matchItem.Groups["userName"].Value; //擷取使用者名稱 string time = TransDate(matchItem.Groups["time"].Value); //擷取入職時間,並轉換日期格式 string email = CheckMail(matchItem.Groups["email"].Value); //擷取郵箱地址,並檢測郵箱格式 string strFormat = String.Format("姓名:{0},入職時間:{1},郵箱:{2}", userName, time, email); Console.WriteLine(strFormat); } } Console.ReadLine();}/// <summary>/// 建立使用者資訊XML/// </summary>/// <returns></returns>public static string GetStrXml(){ StringBuilder strXml = new StringBuilder(); strXml.Append("<UserInfo>"); strXml.Append("<User EntryTime='2010-10-7' Email='zhangsan@163.com'>張三</User>"); strXml.Append("<User EntryTime='2012-5-15' Email='lisi163.com'>李四</User>"); strXml.Append("<User EntryTime='2012-6-13' Email='wangwu@qq.com'>王五</User>"); strXml.Append("</UserInfo>"); return strXml.ToString();}