經常使用C#正則表達式匯總引見。本站提示廣大學習愛好者:(經常使用C#正則表達式匯總引見)文章只能為提供參考,不一定能成為您想要的結果。以下是經常使用C#正則表達式匯總引見正文
有一段時光,正則表達式進修很熾熱很潮水,其時在CSDN一天就可以看到好幾個正則表達式的帖子,那段時光借助服裝論壇t.vhao.net和Wrox Press出書的《C#字符串和正則表達式參考手冊》進修了一些基本的常識,同時也為我在CSDN年夜概賺了1000分,明天想起來,去找《C#字符串和正則表達式參考手冊》時,曾經不知所蹤了。如今用到正則的時刻也比擬少,把之前的筆記等整頓一下,以志不忘。
(1)“@”符號
符下兩ows表研討室的熾熱,當晨在“@”固然並不是C#正則表達式的“成員”,然則它常常與C#正則表達式出雙入對。“@”表現,跟在它前面的字符串是個“逐字字符串”,不是很好懂得,舉個例子,以下兩個聲明是等效的:
string x="D://My Huang//My Doc";
string y = @"D:/My Huang/My Doc";
現實上,假如按以下聲明,C#將會報錯,由於“/”在C#頂用於完成本義,如“/n”換行:
string x = "D:/My Huang/My Doc";
(2)根本的語法字符。
/d 0-9的數字
/D /d的補集(以所以字符為選集,下同),即一切非數字的字符
/w 單詞字符,指年夜小寫字母、0-9的數字、下劃線
/W /w的補集
/s 空白字符,包含換行符/n、回車符/r、制表符/t、垂直制表符/v、換頁符/f
/S /s的補集
. 除換行符/n外的隨意率性字符
[…] 婚配[]內所列出的一切字符
[^…] 婚配非[]內所列出的字符
上面供給一些簡略的示例:
string i = "/n"; string m = "3"; Regex r = new Regex(@"/D"); //同Regex r = new Regex("//D"); //r.IsMatch(i)成果:true //r.IsMatch(m)成果:false string i = "%"; string m = "3"; Regex r = new Regex("[a-z0-9]"); //婚配小寫字母或數字字符 //r.IsMatch(i)成果:false //r.IsMatch(m)成果:true
(3)定位字符
“定位字符”所代表的是一個虛的字符,它代表一個地位,你也能夠直不雅地以為“定位字符”所代表的是某個字符與字符間的誰人渺小間隙。
^ 表現厥後的字符必需位於字符串的開端處
$ 表現其後面的字符必需位於字符串的停止處
/b 婚配一個單詞的界限
/B 婚配一個非單詞的界限
別的,還包含:/A 後面的字符必需位於字符處的開端處,/z 後面的字符必需位於字符串的停止處,/Z 後面的字符必需位於字符串的停止處,或許位於換行符前
上面供給一些簡略的示例:
string i = "Live for nothing,die for something"; Regex r1 = new Regex("^Live for nothing,die for something$"); //r1.IsMatch(i) true Regex r2 = new Regex("^Live for nothing,die for some$"); //r2.IsMatch(i) false Regex r3 = new Regex("^Live for nothing,die for some"); //r3.IsMatch(i) true string i = @"Live for nothing, die for something";//多行 Regex r1 = new Regex("^Live for nothing,die for something$"); Console.WriteLine("r1 match count:" + r1.Matches(i).Count);//0 Regex r2 = new Regex("^Live for nothing,die for something$", RegexOptions.Multiline); Console.WriteLine("r2 match count:" + r2.Matches(i).Count);//0 Regex r3 = new Regex("^Live for nothing,/r/ndie for something$"); Console.WriteLine("r3 match count:" + r3.Matches(i).Count);//1 Regex r4 = new Regex("^Live for nothing,$"); Console.WriteLine("r4 match count:" + r4.Matches(i).Count);//0 Regex r5 = new Regex("^Live for nothing,$", RegexOptions.Multiline); Console.WriteLine("r5 match count:" + r5.Matches(i).Count);//0 Regex r6 = new Regex("^Live for nothing,/r/n$"); Console.WriteLine("r6 match count:" + r6.Matches(i).Count);//0 Regex r7 = new Regex("^Live for nothing,/r/n$", RegexOptions.Multiline); Console.WriteLine("r7 match count:" + r7.Matches(i).Count);//0 Regex r8 = new Regex("^Live for nothing,/r$"); Console.WriteLine("r8 match count:" + r8.Matches(i).Count);//0 Regex r9 = new Regex("^Live for nothing,/r$", RegexOptions.Multiline); Console.WriteLine("r9 match count:" + r9.Matches(i).Count);//1 Regex r10 = new Regex("^die for something$"); Console.WriteLine("r10 match count:" + r10.Matches(i).Count);//0 Regex r11 = new Regex("^die for something$", RegexOptions.Multiline); Console.WriteLine("r11 match count:" + r11.Matches(i).Count);//1 Regex r12 = new Regex("^"); Console.WriteLine("r12 match count:" + r12.Matches(i).Count);//1 Regex r13 = new Regex("$"); Console.WriteLine("r13 match count:" + r13.Matches(i).Count);//1 Regex r14 = new Regex("^", RegexOptions.Multiline); Console.WriteLine("r14 match count:" + r14.Matches(i).Count);//2 Regex r15 = new Regex("$", RegexOptions.Multiline); Console.WriteLine("r15 match count:" + r15.Matches(i).Count);//2 Regex r16 = new Regex("^Live for nothing,/r$/n^die for something$", RegexOptions.Multiline); Console.WriteLine("r16 match count:" + r16.Matches(i).Count);//1 //關於一個多行字符串,在設置了Multiline選項以後,^和$將湧現屢次婚配。 string i = "Live for nothing,die for something"; string m = "Live for nothing,die for some thing"; Regex r1 = new Regex(@"/bthing/b"); Console.WriteLine("r1 match count:" + r1.Matches(i).Count);//0 Regex r2 = new Regex(@"thing/b"); Console.WriteLine("r2 match count:" + r2.Matches(i).Count);//2 Regex r3 = new Regex(@"/bthing/b"); Console.WriteLine("r3 match count:" + r3.Matches(m).Count);//1 Regex r4 = new Regex(@"/bfor something/b"); Console.WriteLine("r4 match count:" + r4.Matches(i).Count);//1 ///b平日用於束縛一個完全的單詞
(4)反復描寫字符
“反復描寫字符”是表現C#正則表達式“很好很壯大”的處所之一:
{n} 婚配後面的字符n次
{n,} 婚配後面的字符n次或多於n次
{n,m} 婚配後面的字符n到m次
? 婚配後面的字符0或1次
+ 婚配後面的字符1次或多於1次
* 婚配後面的字符0次或式於0次
以下供給一些簡略的示例:
string x = "1024"; string y = "+1024"; string z = "1,024"; string a = "1"; string b="-1024"; string c = "10000"; Regex r = new Regex(@"^/+?[1-9],?/d{3}$"); Console.WriteLine("x match count:" + r.Matches(x).Count);//1 Console.WriteLine("y match count:" + r.Matches(y).Count);//1 Console.WriteLine("z match count:" + r.Matches(z).Count);//1 Console.WriteLine("a match count:" + r.Matches(a).Count);//0 Console.WriteLine("b match count:" + r.Matches(b).Count);//0 Console.WriteLine("c match count:" + r.Matches(c).Count);//0 //婚配1000到9999的整數。
(5)擇一婚配
C#正則表達式中的 (|) 符號仿佛沒有一個專門的稱呼,權且稱之為“擇一婚配”吧。現實上,像[a-z]也是一種擇一婚配,只不外它只能婚配單個字符,而(|)則供給了更年夜的規模,(ab|xy)表現婚配ab或婚配xy。留意“|”與“()”在此是一個全體。上面供給一些簡略的示例:
string x = "0"; string y = "0.23"; string z = "100"; string a = "100.01"; string b = "9.9"; string c = "99.9"; string d = "99."; string e = "00.1"; Regex r = new Regex(@"^/+?((100(.0+)*)|([1-9]?[0-9])(/./d+)*)$"); Console.WriteLine("x match count:" + r.Matches(x).Count);//1 Console.WriteLine("y match count:" + r.Matches(y).Count);//1 Console.WriteLine("z match count:" + r.Matches(z).Count);//1 Console.WriteLine("a match count:" + r.Matches(a).Count);//0 Console.WriteLine("b match count:" + r.Matches(b).Count);//1 Console.WriteLine("c match count:" + r.Matches(c).Count);//1 Console.WriteLine("d match count:" + r.Matches(d).Count);//0 Console.WriteLine("e match count:" + r.Matches(e).Count);//0
//婚配0到100的數。最外層的括號內包括兩部門“(100(.0+)*)”,“([1-9]?[0-9])(/./d+)*”,這兩部門是“OR”的關系,即正則表達式引擎會先測驗考試婚配100,假如掉敗,則測驗考試婚配後一個表達式(表現[0,100)規模中的數字)。
(6)特別字符的婚配
上面供給一些簡略的示例:
string x = "\\"; Regex r1 = new Regex("^\\\\$"); Console.WriteLine("r1 match count:" + r1.Matches(x).Count);//1 Regex r2 = new Regex(@"^\\$"); Console.WriteLine("r2 match count:" + r2.Matches(x).Count);//1 Regex r3 = new Regex("^\\$"); Console.WriteLine("r3 match count:" + r3.Matches(x).Count);//0 //婚配“\” string x = "\""; Regex r1 = new Regex("^\"$"); Console.WriteLine("r1 match count:" + r1.Matches(x).Count);//1 Regex r2 = new Regex(@"^""$"); Console.WriteLine("r2 match count:" + r2.Matches(x).Count);//1 //婚配雙引號
(7)組與非捕捉組
以下供給一些簡略的示例:
string x = "Live for nothing,die for something"; string y = "Live for nothing,die for somebody"; Regex r = new Regex(@"^Live ([a-z]{3}) no([a-z]{5}),die /1 some/2$"); Console.WriteLine("x match count:" + r.Matches(x).Count);//1 Console.WriteLine("y match count:" + r.Matches(y).Count);//0
//正則表達式引擎會記憶“()”中婚配到的內容,作為一個“組”,而且可以經由過程索引的方法停止援用。表達式中的“/1”,用於反向援用表達式中湧現的第一個組,即粗體標識的第一個括號內容,“/2”則依此類推。
string x = "Live for nothing,die for something"; Regex r = new Regex(@"^Live for no([a-z]{5}),die for some/1$"); if (r.IsMatch(x)) { Console.WriteLine("group1 value:" + r.Match(x).Groups[1].Value);//輸入:thing } //獲得組中的內容。留意,此處是Groups[1],由於Groups[0]是全部婚配的字符串,即全部變量x的內容。 string x = "Live for nothing,die for something"; Regex r = new Regex(@"^Live for no(?<g1>[a-z]{5}),die for some/1$"); if (r.IsMatch(x)) { Console.WriteLine("group1 value:" + r.Match(x).Groups["g1"].Value);//輸入:thing } //可依據組名停止索引。應用以下格局為標識一個組的稱號(?<groupname>…)。 string x = "Live for nothing nothing"; Regex r = new Regex(@"([a-z]+) /1"); if (r.IsMatch(x)) { x = r.WordStr(x, "$1"); Console.WriteLine("var x:" + x);//輸入:Live for nothing } //刪除原字符串中反復湧現的“nothing”。在表達式以外,應用“$1”來援用第一個組,上面則是經由過程組名來援用: string x = "Live for nothing nothing"; Regex r = new Regex(@"(?<g1>[a-z]+) /1"); if (r.IsMatch(x)) { x = r.WordStr(x, "${g1}"); Console.WriteLine("var x:" + x);//輸入:Live for nothing } string x = "Live for nothing"; Regex r = new Regex(@"^Live for no(?:[a-z]{5})$"); if (r.IsMatch(x)) { Console.WriteLine("group1 value:" + r.Match(x).Groups[1].Value);//輸入:(空) } //在組前加上“?:”表現這是個“非捕捉組”,即引擎將不保留該組的內容。
(8)貪心與非貪心
正則表達式的引擎是貪心,只需形式許可,它將婚配盡量多的字符。經由過程在“反復描寫字符”(*,+)前面添加“?”,可以將婚配形式改成非貪心。請看以下示例:
string x = "Live for nothing,die for something"; Regex r1 = new Regex(@".*thing"); if (r1.IsMatch(x)) { Console.WriteLine("match:" + r1.Match(x).Value);//輸入:Live for nothing,die for something } Regex r2 = new Regex(@".*?thing"); if (r2.IsMatch(x)) { Console.WriteLine("match:" + r2.Match(x).Value);//輸入:Live for nothing }
(9)回溯與非回溯
應用“(?>…)”方法停止非回溯聲明。因為正則表達式引擎的貪心特征,招致它在某些情形下,將停止回溯以取得婚配,請看上面的示例:
string x = "Live for nothing,die for something"; Regex r1 = new Regex(@".*thing,"); if (r1.IsMatch(x)) { Console.WriteLine("match:" + r1.Match(x).Value);//輸入:Live for nothing, } Regex r2 = new Regex(@"(?>.*)thing,"); if (r2.IsMatch(x))//不婚配 { Console.WriteLine("match:" + r2.Match(x).Value); }
//在r1中,“.*”因為其貪心特征,將一向婚配到字符串的最初,隨後婚配“thing”,但在婚配“,”時掉敗,此時引擎將回溯,並在“thing,”處婚配勝利。
//在r2中,因為強迫非回溯,所以全部表達式婚配掉敗。
(10)正向預搜刮、反向預搜刮
正向預搜刮聲明格局:正聲明 “(?=…)”,負聲明 “(?!...)” ,聲明自己不作為終究婚配成果的一部門,請看上面的示例:
string x = "1024 used 2048 free"; Regex r1 = new Regex(@"/d{4}(?= used)"); if (r1.Matches(x).Count==1) { Console.WriteLine("r1 match:" + r1.Match(x).Value);//輸入:1024 } Regex r2 = new Regex(@"/d{4}(?! used)"); if (r2.Matches(x).Count==1) { Console.WriteLine("r2 match:" + r2.Match(x).Value); //輸入:2048 }
//r1中的正聲明表現必需包管在四位數字的前面必需緊隨著“ used”,r2中的負聲明表現四位數字以後不克不及跟有“ used”。
反向預搜刮聲明格局:正聲明“(?<=)”,負聲明“(?<!)”,聲明自己不作為終究婚配成果的一部門,請看上面的示例:
string x = "used:1024 free:2048"; Regex r1 = new Regex(@"(?<=used:)/d{4}"); if (r1.Matches(x).Count==1) { Console.WriteLine("r1 match:" + r1.Match(x).Value);//輸入:1024 } Regex r2 = new Regex(@"(?<!used:)/d{4}"); if (r2.Matches(x).Count==1) { Console.WriteLine("r2 match:" + r2.Match(x).Value);//輸入:2048 }
//r1中的反向正聲明表現在4位數字之前必需緊隨著“used:”,r2中的反向負聲明表現在4位數字之前必需緊隨著除“used:”以外的字符串。
(11)十六進制字符規模
正則表達式中,可使用 "/xXX" 和 "/uXXXX" 表現一個字符("X" 表現一個十六進制數)情勢字符規模:
/xXX 編號在 0到255 規模的字符,好比:空格可使用 "/x20" 表現。
/uXXXX 任何字符可使用 "/u" 再加上其編號的4位十六進制數表現,好比:漢字可使用“[/u4e00-/u9fa5]”表現。
(12)對[0,100]的比擬完整的婚配
上面是一個比擬綜合的示例,關於婚配[0,100],須要特別斟酌的處所包含
*00正當,00.正當,00.00正當,001.100正當
*空字符串不正當,僅小數點不正當,年夜於100不正當
*數值是可帶後綴的,如“1.07f”表現該值為一個float類型(未斟酌)
Regex r = new Regex(@"^/+?0*(?:100(/.0*)?|(/d{0,2}(?=/./d)|/d{1,2}(?=($|/.$)))(/./d*)?)$"); string x = ""; while (true) { x = Console.ReadLine(); if (x != "exit") { if (r.IsMatch(x)) { Console.WriteLine(x + " succeed!"); } else { Console.WriteLine(x + " failed!"); } } else { break; } }
(13)准確婚配有時刻是艱苦的
有些需求要做到准確婚配比擬艱苦,例如:日期、Url、Email地址等,個中一些你乃至須要研討一些專門的文檔寫出准確完整的表達式,關於這類情形,只能退而求其次,包管比擬准確的婚配。例如關於日期,可以基於運用體系的現實情形斟酌一段較短的時光,或許關於像Email的婚配,可以只斟酌最多見的情勢。