有一段时间,正则表达式学习很火热很潮流,当时在脚本之间平台一天就能看到好几个正则表达式的帖子,那段时间借助论坛以及Wrox Press出版的《C#字符串和正则表达式参考手册》学习了一些基础的知识,同时也为我在CSDN大概赚了1000分,今天想起来,去找《C#字符串和正则表达式参考手册》时,已经不知所踪了。现在用到正则的时候也比较少,把以前的笔记等整理一下,以志不忘。
(1)“@”符号
符下两ows表研究室的火热,当晨在“@”虽然并非C#正则表达式的“成员”,但是它经常与C#正则表达式出双入对。“@”表示,跟在它后面的字符串是个“逐字字符串”,不是很好理解,举个例子,以下两个声明是等效的:
string x="D://My Huang//My Doc"; string y = @"D:/My Huang/My Doc";
</div>
事实上,如果按如下声明,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</div>
(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通常用于约束一个完整的单词</div>
(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/</div>
(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);// //匹配到的数</div>
最外层的括号内包含两部分“(100(.0+)*)”,“([1-9]?[0-9])(/./d+)*”,这两部分是“OR”的关系,即正则表达式引擎会先尝试匹配100,如果失败,则尝