本文实例讲述了C#基于正则去掉注释的方法。分享给大家供大家参考,具体如下:
1
2
3
4
5
6
7
8
|
string HoverTreeClearMark( string input)
{
input = Regex.Replace(input, @"/\*[\s\S]*?\*/" , "" , RegexOptions.IgnoreCase);
input = Regex.Replace(input, @"^\s*//[\s\S]*?$" , "" , RegexOptions.Multiline);
input = Regex.Replace(input, @"^\s*$\n" , "" , RegexOptions.Multiline);
input = Regex.Replace(input, @"^\s*//[\s\S]*" , "" , RegexOptions.Multiline);
return input;
}
|
本方法可以去掉 /* */ 和 //注释,以及去掉空白行
希望本文所述对大家C#程序设计有所帮助。