C#中除去所有在HTML元素中标记

80酷酷网    80kuku.com

  

/// 除去所有在HTML元素中标记
  public static string StripHTML(string strHtml)
  {
   string strOutput=strHtml;
   Regex regex = new Regex("<[^>]+>|</[^>]+>");
   strOutput = regex.Replace(strOutput,"");
   return strOutput;

  }













分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: