zoukankan      html  css  js  c++  java
  • 去除HTML代码得函数

     1public static string StripHtmlXmlTags(string content)
     2        {
     3            return Regex.Replace(content, "<[^>]+>""", RegexOptions.IgnoreCase | RegexOptions.Compiled);
     4        }

     5
     6        去除html标签
  • 相关阅读:
    Android 系统开发做什么?
    MySQL索引-B+树
    转:redis雪崩、穿透、击穿
    转:django3上线部署踩得坑
    nginx、uwsgi部署django中session丢失得问题
    类型转换(数字转字符串等)
    JS基础篇1:数据类型(8种)
    css3动画与js动画的区别
    drag拖拽事件
    三栏布局,中间自适应
  • 原文地址:https://www.cnblogs.com/jillzhang/p/373132.html
Copyright © 2011-2022 走看看