c# 正則表達式筆記
正則所需要的命名空間是 using System.Text.RegularExpressions
它包含了8個類,用得最多是的Regex;
Regex不僅可以用來創建正則表達式,而且提供了許多有用的方法。
創建一個Regex對象
new Regex(string pattern)
new Regex(string pattern,RegexOptions options)
第一個參數是個字符串 第二個參數正則配置的選項 有以下一些選項
IgnoreCase的例子
string test = "Abcccccc";
Regex reg = new Regex("abc");
Console.WriteLine(reg.IsMatch(test)); //false
Regex reg1 = new Regex("abc",RegexOptions.IgnoreCase); //不區分大小寫
Console.WriteLine(reg1.IsMatch(test));//true
RightToLeft的例子
string test = "vvv123===456vvv";
Regex reg = new Regex("\\d+");// 123 從左到右 匹配連續數字
Console.WriteLine(reg.Match(test));
Regex reg1 = new Regex("\\d+",RegexOptions.RightToLeft);
Console.WriteLine(reg1.Match(test));// 456 從右到左 匹配連續數字
MultiLinc的例子
StringBuilder input = new StringBuilder();
input.AppendLine("A bbbb A");
input.AppendLine("C bbbb C");
string pattern = @"^\w";
Console.WriteLine(input.ToString());
MatchCollection matchCol = Regex.Matches(input.ToString(), pattern, RegexOptions.Multiline);
foreach (Match item in matchCol)
{
Console.WriteLine("結果:{0}", item.Value);
}
IsMatch()
可以用來測試字符串,看他是否匹配正則表達式的模式.如果發現了一次匹配,就返回True.IsMatch有個靜態方法重載
Regex.IsMatch(string str,string pattern);
string str = "abcbbbbbbbb";
string reg = @"^abc";
Console.WriteLine(Regex.IsMatch(str,reg ));//靜態的重載方法
Regex pattern = new Regex("^abc");
Console.WriteLine(pattern.IsMatch(str)); //生成對象上的方法
Replace()
替換字符串一個匹配的模式,也有一個靜態的重載方法,replace變體方法很多,我只記錄我看到的
replace(string input ,string pattern,int count,int start) 第3個參數是總共替換幾個,第4分參數是從字符串的什麼位置開始替換
string str = "123456abc";
Regex pattern = new Regex(@"\d+");
Console.WriteLine(pattern.Replace(str,"6666"));
string pattern1 = @"\d+";
Console.WriteLine(Regex.Replace(str,pattern1,"6666"));
string str1 = "asd,sss,asd,asdf,jjjj,cccc";
Regex pattern2 = new Regex(@"\w+");
Console.WriteLine(pattern2.Replace(str1, "v5v5", 2));
Console.WriteLine(pattern2.Replace(str1, "v5v5", 2,8));
// Console.WriteLine(Regex.Replace(str1, @"\w+", "v5v5", 2)); 靜態方法好像不行 會報錯 哈哈
Match()
獲得匹配的內容(只是一次的 MatchCollection可以獲得所有的的匹配的集合)
生成的對象上的方法 的用法
reg.Match(string input,int start,int length)
第一個參數是要處理的字符串 第二哥參數開始的位置 第3個參數是需要匹配的長度。第2第3個參數可以不需要
靜態方法 Regex.Match(string input , string pattern,RegexOptions options)
第3個參數可以不要
string str = "vchaha vcoo vclielie vbguale vfgg vckk";
Regex pattern = new Regex(@"vc\w*");
Match matchMode = pattern.Match(str);
while (matchMode.Success)
{
Console.WriteLine(matchMode.Value);
matchMode = matchMode.NextMatch();
}
Console.WriteLine("-----------------------------------");
Match matchMode1 = Regex.Match(str, @"vc\w*");
while (matchMode1.Success)
{
Console.WriteLine(matchMode1.Value);
matchMode1 = matchMode1.NextMatch();
}
Match類的一些方法
MatchCollection()
Regex.Matchs會返回MatchCollection類,這個集合包含了所有的Match的集合
string input = "hahaha 123xiaodi 55nihao 66chifanlema ccc333 ccc";
Regex pattern = new Regex(@"\d+[a-z]+",RegexOptions.IgnoreCase);
MatchCollection matchsMade = pattern.Matches(input);
foreach (Match item in matchsMade)
{
Console.WriteLine(item.Value);
}