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;
}
public static string striphtml(string strhtml)
{
string stroutput=strhtml;
regex regex = new regex(@"<[^>]+>|</[^>]+>");
stroutput = regex.replace(stroutput,"");
return stroutput;
}
上一篇: android实现音乐播放器
推荐阅读
-
C#中除去所有在HTML元素中标记
-
【转载】 C#中通过Where方法查找出所有符合条件的元素集合
-
在C#中List集合使用First()方法获取第一个元素的操作
-
C#中除去所有在HTML元素中标记
-
在HTML中怎样让Flash不遮挡div元素
-
在Word2010文档中显示所有格式标记
-
【转载】 C#中通过Where方法查找出所有符合条件的元素集合
-
在selenium中,如何让滚动条滚动到指定页面元素的高度 链接整理_html/css_WEB-ITnose
-
C#(HTML)_小技巧_关于textbox框中不能输入HTML标签的解决方法(如输入“
”后,在提交表单时系统会崩溃)_html/css_WEB-ITnose
-
html中在鼠标双击元素时触发的事件属性ondblclick