這篇文章主要介紹了C#Regex匹配與替換字串功能,結合具體執行個體形式分析了C#字串正則替換相關類、方法的提示與相關注意事項,需要的朋友可以參考下
本文執行個體講述了C#Regex匹配與替換字串功能。分享給大家供大家參考,具體如下:
案例一:\w+=>[A-Za-z1-9_],\s+=>任何空白字元,()=>捕獲
string text = @"public string testMatchObj string s string match ";string pat = @"(\w+)\s+(string)";// Compile the regular expression.Regex r = new Regex(pat, RegexOptions.IgnoreCase);// Match the regular expression pattern against a text string.Match m = r.Match(text);int matchCount = 0;while (m.Success) { Response.Write("Match"+ (++matchCount) + "<br>"); for (int i = 1; i <= 2; i++) { Group g = m.Groups[i]; Response.Write("Group"+i+"='" + g + "'" + "<br>"); CaptureCollection cc = g.Captures; for (int j = 0; j < cc.Count; j++) { Capture c = cc[j]; Response.Write("Capture"+j+"='" + c + "', Position="+c.Index + "<br>"); } } m = m.NextMatch();}
該案例運行結果是:
Match1Group1='public'Capture0='public', Position=0Group2='string'Capture0='string', Position=7Match2Group1='testMatchObj'Capture0='testMatchObj', Position=14Group2='string'Capture0='string', Position=27Match3Group1='s'Capture0='s', Position=34Group2='string'
Capture0='string', Position=36
案例二:
string x = this.txt.Text;RegexOptions ops = RegexOptions.Multiline;Regex r = new Regex(@"\[(.+?)\]", ops); //\[(.+?)\/\] @"\[(.+)\](.*?)\[\/\1\]"//Response.Write(r.IsMatch(x).ToString()+DateTime.Now.ToString());if (r.IsMatch(x)){ x = r.Replace(x, "<$1>"); Response.Write(x.ToString() + DateTime.Now.ToString()); //Console.WriteLine("var x:" + x);//輸出:Live for nothing}else{ Response.Write("false" + DateTime.Now.ToString());}
這個是為了替換"[]"對,把它們換成"<>"
C#中的Regex包含在.NET基礎類庫的一個名稱空間下,這個名稱空間就是System.Text.RegularExpressions
。該名稱空間包括8個類,1個枚舉,1個委託。他們分別是:
Capture: 包含一次匹配的結果;
CaptureCollection: Capture的序列;
Group: 一次組記錄的結果,由Capture繼承而來;
GroupCollection:表示擷取的群組的集合
Match: 一次運算式的匹配結果,由Group繼承而來;
MatchCollection: Match的一個序列;
MatchEvaluator: 執行替換操作時使用的委託;
Regex:編譯後的運算式的執行個體。
RegexCompilationInfo:提供編譯器用於將Regex編譯為獨立程式集的資訊
RegexOptions 提供用於設定Regex的枚舉值
Regex類中還包含一些靜態方法:
Escape: 對字串中的regex中的轉義符進行轉義;
IsMatch: 如果運算式在字串中匹配,該方法返回一個布爾值;
Match: 返回Match的執行個體;
Matches: 返回一系列的Match的方法;
Replace: 用替換字串替換匹配的運算式;
Split: 返回一系列由運算式決定的字串;
Unescape:不對字串中的逸出字元轉義。