最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net C#过滤html标签几个函数
时间:2022-06-25 08:01:40 编辑:袖梨 来源:一聚教程网
在项目中遇到这样一个需求,需要将一段html转换为一般文本返回,万能的正则表达式来了。
正则表达式来拯救你,代码如下:
| 代码如下 | 复制代码 |
|
public static string Html2Text(string htmlStr) if ( String .IsNullOrEmpty(htmlStr)) { return "" ; } string regEx_style = " string regEx_script = " string regEx_html = "]+>" ; //定义HTML标签的正则表达式 htmlStr = Regex .Replace(htmlStr, regEx_style, "" ); //删除css htmlStr = Regex .Replace(htmlStr, regEx_script, "" ); //删除js htmlStr = Regex .Replace(htmlStr, regEx_html, "" ); //删除html标记 htmlStr = Regex .Replace(htmlStr, "\s*|t|r|n" , "" ); //去除tab、空格、空行 htmlStr = htmlStr.Replace( " " , "" ); htmlStr = htmlStr.Replace( """ , "" ); //去除异常的引号" " " htmlStr = htmlStr.Replace( """ , "" ); return htmlStr.Trim(); }
|
|
代码二
以下是引用片段:
-----
| 代码如下 | 复制代码 |
|
/**/ |
|
相关文章
- 荧光深渊好玩吗 荧光深渊手游深度体验与玩法解析 03-30
- 彩虹之光开荒玩法全解析 彩虹之光新手开荒攻略与资源规划指南 03-30
- 前碧蓝档案制作人主导全新手游计划Project K5预计9月1日公开 03-30
- 性感死神妹力四射 推理所剩无几但很涩的雾雨迷宫 03-30
- 绝区零月城柳怎么玩 电系异常核心极性紊乱爆发天花板 03-30
- 如何在QQ邮箱撤回邮件 03-30