程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 實例詳解C#正則表達式

實例詳解C#正則表達式

編輯:C#入門知識

實例詳解C#正則表達式。本站提示廣大學習愛好者:(實例詳解C#正則表達式)文章只能為提供參考,不一定能成為您想要的結果。以下是實例詳解C#正則表達式正文


有一段時光,正則表達式進修很熾熱很潮水,其時在劇本之間平台一天就可以看到好幾個正則表達式的帖子,那段時光借助服裝論壇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 = "";
 Regex r = new Regex(@"/D");
 //同Regex r = new Regex("//D");
 //r.IsMatch(i)成果:true
 //r.IsMatch(m)成果:false
 string i = "%";
 string m = "";
 Regex r = new Regex("[a-z-]");
 //婚配小寫字母或數字字符
 //r.IsMatch(i)成果:false
 //r.IsMatch(m)成果:true

(3)定位字符

“定位字符”所代表的是一個虛的字符,它代表一個地位,你也能夠直不雅地以為“定位字符”所代表的是某個字符與字符間的誰人渺小間隙。

^  表現厥後的字符必需位於字符串的開端處
$  表現其後面的字符必需位於字符串的停止處
/b  婚配一個單詞的界限
/B  婚配一個非單詞的界限

別的,還包含:/A  後面的字符必需位於字符處的開端處,/z  後面的字符必需位於字符串的停止處,/Z  後面的字符必需位於字符串的停止處,或許位於換行符前

上面供給一些簡略的示例:

string i = "Live for nothing,die for something";
 Regex r = new Regex("^Live for nothing,die for something$");
 //r.IsMatch(i) true
 Regex r = new Regex("^Live for nothing,die for some$");
 //r.IsMatch(i) false
 Regex r = new Regex("^Live for nothing,die for some");
 //r.IsMatch(i) true
 string i = @"Live for nothing,
 die for something";//多行
 Regex r = new Regex("^Live for nothing,die for something$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,die for something$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r/ndie for something$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r/n$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r/n$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^die for something$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^die for something$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("$");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex("^Live for nothing,/r$/n^die for something$", RegexOptions.Multiline);
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 //關於一個多行字符串,在設置了Multiline選項以後,^和$將湧現屢次婚配。
 string i = "Live for nothing,die for something";
 string m = "Live for nothing,die for some thing";
 Regex r = new Regex(@"/bthing/b");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex(@"thing/b");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 Regex r = new Regex(@"/bthing/b");
 Console.WriteLine("r match count:" + r.Matches(m).Count);//
 Regex r = new Regex(@"/bfor something/b");
 Console.WriteLine("r match count:" + r.Matches(i).Count);//
 ///b平日用於束縛一個完全的單詞

(4)反復描寫字符

“反復描寫字符”是表現C#正則表達式“很好很壯大”的處所之一:

{n}  婚配後面的字符n次
{n,}  婚配後面的字符n次或多於n次
{n,m}  婚配後面的字符n到m次
?  婚配後面的字符0或1次
+  婚配後面的字符1次或多於1次
*  婚配後面的字符0次或式於0次

以下供給一些簡略的示例:

string x = "";
 string y = "+";
 string z = ",";
 string a = "";
 string b="-";
 string c = "";
 Regex r = new Regex(@"^/+?[-],?/d{}$");
 Console.WriteLine("x match count:" + r.Matches(x).Count);//
 Console.WriteLine("y match count:" + r.Matches(y).Count);//
 Console.WriteLine("z match count:" + r.Matches(z).Count);//
 Console.WriteLine("a match count:" + r.Matches(a).Count);//
 Console.WriteLine("b match count:" + r.Matches(b).Count);//
 Console.WriteLine("c match count:" + r.Matches(c).Count);//
 //婚配到的整數。
 //http://www.cnblogs.com/sosoft/

(5)擇一婚配

C#正則表達式中的 (|) 符號仿佛沒有一個專門的稱呼,權且稱之為“擇一婚配”吧。現實上,像[a-z]也是一種擇一婚配,只不外它只能婚配單個字符,而(|)則供給了更年夜的規模,(ab|xy)表現婚配ab或婚配xy。留意“|”與“()”在此是一個全體。上面供給一些簡略的示例: 

 string x = "";
 string y = ".";
 string z = "";
 string a = ".";
 string b = ".";
 string c = ".";
 string d = ".";
 string e = ".";
 Regex r = new Regex(@"^/+?(((.+)*)|([-]?[-])(/./d+)*)$");
 Console.WriteLine("x match count:" + r.Matches(x).Count);//
 Console.WriteLine("y match count:" + r.Matches(y).Count);//
 Console.WriteLine("z match count:" + r.Matches(z).Count);//
 Console.WriteLine("a match count:" + r.Matches(a).Count);//
 Console.WriteLine("b match count:" + r.Matches(b).Count);//
 Console.WriteLine("c match count:" + r.Matches(c).Count);//
 Console.WriteLine("d match count:" + r.Matches(d).Count);//
 Console.WriteLine("e match count:" + r.Matches(e).Count);//
 //婚配到的數

最外層的括號內包括兩部門“(100(.0+)*)”,“([1-9]?[0-9])(/./d+)*”,這兩部門是“OR”的關系,即正則表達式引擎會先測驗考試婚配100,假如掉敗,則測驗考試婚配後一個表達式(表現[0,100)規模中的數字)。

(6)特別字符的婚配

上面供給一些簡略的示例:

(7)組與非捕捉組

以下供給一些簡略的示例:

 string x = "Live for nothing,die for something";
 string y = "Live for nothing,die for somebody";
 Regex r = new Regex(@"^Live ([a-z]{}) no([a-z]{}),die / some/$");
 Console.WriteLine("x match count:" + r.Matches(x).Count);//
 Console.WriteLine("y match count:" + r.Matches(y).Count);//
 //正則表達式引擎會記憶“()”中婚配到的內容,作為一個“組”,而且可以經由過程索引的方法停止援用

表達式中的“/”,用於反向援用表達式中湧現的第一個組,即粗體標識的第一個括號內容,“/”則依此類推。

 string x = "Live for nothing,die for something";
 Regex r = new Regex(@"^Live for no([a-z]{}),die for some/$");
 if (r.IsMatch(x))
 {
 Console.WriteLine("group value:" + r.Match(x).Groups[].Value);//輸入:thing
 }
 //獲得組中的內容。留意,此處是Groups[],由於Groups[]是全部婚配的字符串,即全部變量x的內容。
 // http://www.cnblogs.com/sosoft/
 
 string x = "Live for nothing,die for something";
 Regex r = new Regex(@"^Live for no(?<g>[a-z]{}),die for some/$");
 if (r.IsMatch(x))
 {
 Console.WriteLine("group value:" + r.Match(x).Groups["g"].Value);//輸入:thing
 }
 //可依據組名停止索引。應用以下格局為標識一個組的稱號(?<groupname>…)。
 string x = "Live for nothing nothing";
 Regex r = new Regex(@"([a-z]+) /");
 if (r.IsMatch(x))
 {
 x = r.WordStr(x, "$");
 Console.WriteLine("var x:" + x);//輸入:Live for nothing
 }
 //刪除原字符串中反復湧現的“nothing”。在表達式以外,應用“$”來援用第一個組,上面則是經由過程組名來援用:
 string x = "Live for nothing nothing";
 Regex r = new Regex(@"(?<g>[a-z]+) /");
 if (r.IsMatch(x))
 {
 x = r.WordStr(x, "${g}");
 Console.WriteLine("var x:" + x);//輸入:Live for nothing
 }
 string x = "Live for nothing";
 Regex r = new Regex(@"^Live for no(?:[a-z]{})$");
 if (r.IsMatch(x))
 {
 Console.WriteLine("group value:" + r.Match(x).Groups[].Value);//輸入:(空)
 }
//在組前加上“?:”表現這是個“非捕捉組”,即引擎將不保留該組的內容

(8)貪心與非貪心

正則表達式的引擎是貪心,只需形式許可,它將婚配盡量多的字符。經由過程在“反復描寫字符”(*,+)前面添加“?”,可以將婚配形式改成非貪心。請看以下示例:

 string x = "Live for nothing,die for something";
 Regex r = new Regex(@".*thing");
 if (r.IsMatch(x))
 {
 Console.WriteLine("match:" + r.Match(x).Value);//輸入:Live for nothing,die for something
 }
 Regex r = new Regex(@".*?thing");
 if (r.IsMatch(x))
 {
 Console.WriteLine("match:" + r.Match(x).Value);//輸入:Live for nothing
 }

(9)回溯與非回溯

應用“(?>…)”方法停止非回溯聲明。因為正則表達式引擎的貪心特征,招致它在某些情形下,將停止回溯以取得婚配,請看上面的示例:

string x = "Live for nothing,die for something";
 Regex r = new Regex(@".*thing,");
 if (r.IsMatch(x))
 {
 Console.WriteLine("match:" + r.Match(x).Value);//輸入:Live for nothing,
 }
 Regex r = new Regex(@"(?>.*)thing,");
 if (r.IsMatch(x))//不婚配
 {
 Console.WriteLine("match:" + r.Match(x).Value);
 }
 //在r中,“.*”因為其貪心特征,將一向婚配到字符串的最初,隨後婚配“thing”,但在婚配“,”時掉敗,此時引擎將回溯,並在“thing,”處婚配勝利

 //在r中,因為強迫非回溯,所以全部表達式婚配掉敗。

(10)正向預搜刮、反向預搜刮

正向預搜刮聲明格局:正聲明 “(?=…)”,負聲明 “(?!...)” ,聲明自己不作為終究婚配成果的一部門,請看上面的示例:

 string x = " used free";
 Regex r = new Regex(@"/d{}(?= used)");
 if (r.Matches(x).Count==)
 {
 Console.WriteLine("r match:" + r.Match(x).Value);//輸入:
 }
 Regex r = new Regex(@"/d{}(?! used)");
 if (r.Matches(x).Count==)
 {
 Console.WriteLine("r match:" + r.Match(x).Value); //輸入:
 }
 //r中的正聲明表現必需包管在四位數字的前面必需緊隨著“ used”,r2中的負聲明表現四位數字以後不克不及跟有“ used”

反向預搜刮聲明格局:正聲明“(?<=)”,負聲明“(?<!)”,聲明自己不作為終究婚配成果的一部門,請看上面的示例:

string x = "used: free:";
 Regex r = new Regex(@"(?<=used:)/d{}");
 if (r.Matches(x).Count==)
 {
 Console.WriteLine("r match:" + r.Match(x).Value);//輸入:
 }
 Regex r = new Regex(@"(?<!used:)/d{}");
 if (r.Matches(x).Count==)
 {
 Console.WriteLine("r match:" + r.Match(x).Value);//輸入:
 }
 //r中的反向正聲明表現在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(@"^/+?*(?:(/.*)?|(/d{,}(?=/./d)|/d{,}(?=($|/.$)))(/./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的婚配,可以只斟酌最多見的情勢。

以上內容是小編給年夜家引見的C#正則表達式,願望年夜家愛好。同時感激年夜家一向以來對網站的支撐,祝年夜家除夕快活。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved