当前位置:  编程技术>.net/c#/asp.net

c# 正则html标签剔除方法的实现代码

    来源: 互联网  发布时间:2014-08-30

    本文导语:  方法1: public string checkStr(string html)  {      System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"", System.Text.RegularExpressions.RegexOptions.IgnoreCase);      System.Text.RegularExpressions.Regex regex7 = new System.Text.RegularExpressi...

方法1:
public string checkStr(string html)
 {
     System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex(@"", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
     System.Text.RegularExpressions.Regex regex7 = new System.Text.RegularExpressions.Regex(@"

", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
     System.Text.RegularExpressions.Regex regex8 = new System.Text.RegularExpressions.Regex(@"

", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
     System.Text.RegularExpressions.Regex regex9 = new System.Text.RegularExpressions.Regex(@"]*>", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
     html = regex1.Replace(html, ""); //过滤标记
     html = regex2.Replace(html, ""); //过滤href=javascript: () 属性
     html = regex3.Replace(html, " _disibledevent="); //过滤其它控件的on...事件
     html = regex4.Replace(html, ""); //过滤iframe
     html = regex5.Replace(html, ""); //过滤frameset
     html = regex6.Replace(html, ""); //过滤frameset
     html = regex7.Replace(html, ""); //过滤frameset
     html = regex8.Replace(html, ""); //过滤frameset
     html = regex9.Replace(html, "");
     html = html.Replace(" ", "");
     html = html.Replace("", "");
     html = html.Replace("", "");
     return html;
}

方法2:
 

代码示例:

#region 过滤掉 html代码
public static string StripHTML(string strHtml)
{
string [] aryReg ={
@"]*?>.*?",

@"",
@"([rn])[s]+",
@"&(quot|#34);",
@"&(amp|#38);",
@"&(lt|#60);",
@"&(gt|#62);",
@"&(nbsp|#160);",
@"&(iexcl|#161);",
@"&(cent|#162);",
@"&(pound|#163);",
@"&(copy|#169);",
@"&#(d+);",
@"-->",
@"


    
 
 

您可能感兴趣的文章:

  • c#正则过滤图片标签 asp.net正则过滤的例子
  • C# 正则表达式读取Discuz帖子中附件的代码举例
  • c#匹配整数和小数的正则表达式
  • C# 正则判断一个数字的格式是否有逗号的代码
  • C#匹配中文字符串的4种正则表达式分享
  • c#转义字符串中的所有正则特殊字符方法示例
  • c# 正则指引--字符组
  • c#正则判断字符是否为中文的三种方法
  • C#的正则表达式Regex类使用简明教程
  • asp.net(c#) 使用Rex正则来生成字符串数组的代码
  • C#正则表达式分解和转换IP地址实例(C#正则表达式大全 c#正则表达式语法)
  • c#字符串使用正则表达式示例
  • C#正则表达式使用方法示例
  • c#判断字符是否为中文的三种方法分享(正则表达式判断)
  • 常用正则 常用的C#正则表达式
  • c#使用正则表达式匹配字符串验证URL示例
  • C#正则表达式获取下拉菜单(select)的相关属性值
  • c# 正则表达式 验证数字的方法
  • C#正则表达式的递归匹配分析
  • C#常用正则大全分享
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Perl 正则表达式之角色化记忆
  • 正则表达式 表示 非指定字符串开头的正则
  • Linux c++ boost库正则表达式用法
  • 正则匹配后面非指定字符的正则 原创
  • Python通过正则表达式获取,去除(过滤)或者替换HTML标签的几种方法
  • java使用正则表达校验手机号码示例(手机号码正则)
  • linux bash shell命令:文本搜索工具grep正则表达式元字符集(基本集)
  • JS 正则表达式的相关方法(正则学习笔记1)
  • js正则表达式之RegExp对象之compile方法 编译正则表达式
  • PHP html标签正则替换并可自定义正则规则
  • jQuery中的正则表达式分析 正则基础
  • 正则表达式问题,使用正则表达式找出指定字符串并替换?
  • 正则表达式概述 什么是正则表达式 .
  • php 正则 不包含某字符串的正则表达式
  • 常用正则表达式及评注-学习正则必备
  • python正则表达式去掉数字中的逗号(python正则匹配逗号)
  • 正则表达式口诀_学习正则的朋友值得一看
  • Javascript里的两种使用正则的方法
  • java 正则表达式基础,实例学习资料收集大全 原创
  • (菜鸟飞飞)问个正则表达式的问题
  • 哪些命令可以使用正则表达式


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3