輕松進修C#的正則表達式。本站提示廣大學習愛好者:(輕松進修C#的正則表達式)文章只能為提供參考,不一定能成為您想要的結果。以下是輕松進修C#的正則表達式正文
在編寫處置字符串的法式時,常常會有查找相符某些龐雜規矩的字符串的須要。正則表達式就是用於描寫這些規矩的對象。正則表達式具有一套本身的語律例則,罕見語法包含字符婚配,反復婚配,字符定位,本義婚配和其他高等語法(字符分組,字符調換和字符決議計劃),應用正則表達式時,起首結構正則表達式,這就用到了Regex類。其結構方法有兩種:
根本情勢Regex(正則表達式)
根本情勢Regex(正則表達式,婚配選項)
個中婚配選項是供給一些特別的贊助,是一個列舉值,包含上面六個值:
1、正則表達式的婚配
正則表達式的婚配是經由過程Regex類的IsMatch辦法完成的,IsMatch辦法的應用格局為:
Regex.IsMatch(要斷定的字符串,正則表達式)
例一:應用IsMatch辦法斷定能否相符本地的德律風號碼的法式
<span >using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions;//引入定名空間 using System.Threading.Tasks; namespace 正則表達式 { class Program { static void Main(string[] args) { string str = @"(0530|0530-)\d{7,8}";//界說的正則表達式相符前提為“0530”或 Console.WriteLine("請輸出一個德律風號碼");//“0530-”開首,前面跟7位或8位數字 string tel = Console.ReadLine(); bool b; b = Regex.IsMatch(tel,str);//斷定能否相符正則表達式 if (b) { Console.WriteLine("{0}是某地的德律風號碼",tel); } else { Console.WriteLine("{0}不是某地的德律風號碼",tel); } Console.ReadLine(); } } }</span>
輸出:0530-12345678
輸入的成果為:0530-12345678是某地的德律風號碼
2、正則表達式的調換
要經由過程正則表達式調換字符串中的婚配項,就要經由過程Regex類中的WordStr辦法。平日用的一種格局為:
Regex.WordStr(要搜刮婚配項的字符串,要調換的原字符串,調換後的字符串)
例二:應用WordStr辦法將用戶輸出的電子郵件中的“@”調換為“AT”的法式
<span >using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string str = @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*";//界說的電子郵件地址的正則表達式 Console.WriteLine("請輸出一個准確的Internet電子郵件地址"); string email = Console.ReadLine(); bool b; b = Regex.IsMatch(email, str);//斷定能否相符正則表達式 if (b) { string outstr = ""; outstr = Regex.WordStr(email, "@", "AT");//停止調換 Console.WriteLine("調換後為:{0}", outstr); } else { Console.WriteLine("你所輸出的字符串中不包含Internet URL"); } Console.ReadLine(); } } }</span>
輸出:[email protected]
輸入的成果為:123456AT126.com
3、正則表達式的拆分
要經由過程正則表達式拆分字符串,就要經由過程Regex類的Split辦法,格局為:
Regex.Split(要拆分的字符串,要婚配的正則表達式形式)
例三:經由過程Split辦法停止輸出的字符串的拆分
<span >using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { string str = ";";//界說的正則表達式 Console.WriteLine("請輸出多個用戶姓名,以分號離隔"); string names = Console.ReadLine(); string[] name; name = Regex.Split(names,str); Console.WriteLine("分隔後的姓名為:"); foreach (string item in name) { Console.WriteLine(item); } Console.ReadLine(); } } }</span>
輸出:張三;李四;王五
輸入的成果為:張三
李四
王五
以上就是C#的正則表達式,願望對年夜家的進修有所贊助。