c# 正規表示式(轉)

weixin_34304013發表於2010-10-20

1.styleReg:清除樣式.如<style>.class{}</style>.全部替換為空.

2.scriptReg和styleReg同樣的道理.

3.htmlReg :清除html標籤的.輸入為<div>aaa</div>,結果為:aaa

4.htmlSpaceReg :html空格&nbsp;替換為空格

5.spaceReg :把一個以上的空格替換為一個空格.

  1. public string RemoveHtml(string src)  
  2. {  
  3.     Regex htmlReg = new Regex(@"<[^>]+>", RegexOptions.Compiled | RegexOptions.IgnoreCase);  
  4.     Regex htmlSpaceReg = new Regex("\\&nbsp\\;", RegexOptions.Compiled | RegexOptions.IgnoreCase);  
  5.     Regex spaceReg = new Regex("\\s{2,}|\\ \\;", RegexOptions.Compiled | RegexOptions.IgnoreCase);  
  6.     Regex styleReg = new Regex(@"<style(.*?)</style>", RegexOptions.Compiled | RegexOptions.IgnoreCase);  
  7.     Regex scriptReg = new Regex(@"<script(.*?)</script>", RegexOptions.Compiled | RegexOptions.IgnoreCase);  
  8.   
  9.     src = styleReg.Replace(src, string.Empty);  
  10.     src = scriptReg.Replace(src, string.Empty);  
  11.     src = htmlReg.Replace(src, string.Empty);  
  12.     src = htmlSpaceReg.Replace(src, " ");  
  13.     src = spaceReg.Replace(src, " ");  
  14.     return src.Trim();    
  15. }  

相關文章