C#正則表達式教程和示例
轉載自:http://www.cnblogs.com/sosoft/p/regex.html
C#正則表達式教程和示例
有一段時間,正則表達式學習很火熱很潮流,當時在CSDN一天就能看到好幾個正則表達式的帖子,那段時間借助論壇以及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外的任意字符 […] 匹配[]內所列出的所有字符 [^…] 匹配非[]內所列出的字符 下面提供一些簡單的示例:
1 string i = "/n";
2 string m = "3";
3 Regex r = new Regex(@"/D");
4 //同Regex r = new Regex("//D");
5 //r.IsMatch(i)結果:true
6 //r.IsMatch(m)結果:false
7
8 string i = "%";
9 string m = "3";
10 Regex r = new Regex("[a-z0-9]");
11 //匹配小寫字母或數字字符
12 //r.IsMatch(i)結果:false
13 //r.IsMatch(m)結果:true
(3)定位字符 “定位字符”所代表的是一個虛的字符,它代表一個位置,你也可以直觀地認為“定位字符”所代表的是某個字符與字符間的那個微小間隙。 ^ 表示其後的字符必須位於字符串的開始處 $ 表示其前面的字符必須位於字符串的結束處 /b 匹配一個單詞的邊界 /B 匹配一個非單詞的邊界 另外,還包括:/A 前面的字符必須位於字符處的開始處,/z 前面的字符必須位於字符串的結束處,/Z 前面的字符必須位於字符串的結束處,或者位於換行符前 下面提供一些簡單的示例:
1 string i = "Live for nothing,die for something";
2 Regex r1 = new Regex("^Live for nothing,die for something$");
3 //r1.IsMatch(i) true
4 Regex r2 = new Regex("^Live for nothing,die for some$");
5 //r2.IsMatch(i) false
6 Regex r3 = new Regex("^Live for nothing,die for some");
7 //r3.IsMatch(i) true
8
9 string i = @"Live for nothing,
10 die for something";//多行
11 Regex r1 = new Regex("^Live for nothing,die for something$");
12 Console.WriteLine("r1 match count:" + r1.Matches(i).Count);//0
13 Regex r2 = new Regex("^Live for nothing,die for something$", RegexOptions.Multiline);
14 Console.WriteLine("r2 match count:" + r2.Matches(i).Count);//0
15 Regex r3 = new Regex("^Live for nothing,/r/ndie for something$");
16 Console.WriteLine("r3 match count:" + r3.Matches(i).Count);//1
17 Regex r4 = new Regex("^Live for nothing,$");
18 Console.WriteLine("r4 match count:" + r4.Matches(i).Count);//0
19 Regex r5 = new Regex("^Live for nothing,$", RegexOptions.Multiline);
20 Console.WriteLine("r5 match count:" + r5.Matches(i).Count);//0
21 Regex r6 = new Regex("^Live for nothing,/r/n$");
22 Console.WriteLine("r6 match count:" + r6.Matches(i).Count);//0
23 Regex r7 = new Regex("^Live for nothing,/r/n$", RegexOptions.Multiline);
24 Console.WriteLine("r7 match count:" + r7.Matches(i).Count);//0
25 Regex r8 = new Regex("^Live for nothing,/r$");
26 Console.WriteLine("r8 match count:" + r8.Matches(i).Count);//0
27 Regex r9 = new Regex("^Live for nothing,/r$", RegexOptions.Multiline);
28 Console.WriteLine("r9 match count:" + r9.Matches(i).Count);//1
29 Regex r10 = new Regex("^die for something$");
30 Console.WriteLine("r10 match count:" + r10.Matches(i).Count);//0
31 Regex r11 = new Regex("^die for something$", RegexOptions.Multiline);
32 Console.WriteLine("r11 match count:" + r11.Matches(i).Count);//1
33 Regex r12 = new Regex("^");
34 Console.WriteLine("r12 match count:" + r12.Matches(i).Count);//1
35 Regex r13 = new Regex("$");
36 Console.WriteLine("r13 match count:" + r13.Matches(i).Count);//1
37 Regex r14 = new Regex("^", RegexOptions.Multiline);
38 Console.WriteLine("r14 match count:" + r14.Matches(i).Count);//2
39 Regex r15 = new Regex("$", RegexOptions.Multiline);
40 Console.WriteLine("r15 match count:" + r15.Matches(i).Count);//2
41 Regex r16 = new Regex("^Live for nothing,/r$/n^die for something$", RegexOptions.Multiline);
42 Console.WriteLine("r16 match count:" + r16.Matches(i).Count);//1
43 //對於一個多行字符串,在設置了Multiline選項之後,^和$將出現多次匹配。
44
45 string i = "Live for nothing,die for something";
46