当前位置:主页 > 软件编程 > .NET代码 >

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

时间:2021-11-29 10:31:44 | 栏目:.NET代码 | 点击:

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

您可能感兴趣的文章:

相关文章