欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-11-09 12:54:52
/// 除去所有在html元素中标记   public static string striphtml(stri...
/// 除去所有在html元素中标记
  public static string striphtml(string strhtml)
  {
   string stroutput=strhtml;
   regex regex = new regex(@"<[^>]+>|</[^>]+>");
   stroutput = regex.replace(stroutput,"");
   return stroutput;
  }