首页 > 编程 > HTML > 正文

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

2024-08-26 00:15:35
字体:
来源:转载
供稿:网友

/// 除去所有在html元素中标记
  public static string striphtml(string strhtml)
  {
   string stroutput=strhtml;
   regex regex = new regex(@"<[^>]+>|</[^>]+>");
   stroutput = regex.replace(stroutput,"");
   return stroutput;

  }



发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表