zoukankan      html  css  js  c++  java
  • c# 去除文本的html标签

     1 public static string ContentReplace(string input)
     2         {
     3             input = Regex.Replace(input, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);
     4             input = Regex.Replace(input, @"([
    ])[s]+", "", RegexOptions.IgnoreCase);
     5             input = Regex.Replace(input, @"-->", "", RegexOptions.IgnoreCase);
     6             input = Regex.Replace(input, @"<!--.*", "", RegexOptions.IgnoreCase);
     7 
     8             input = Regex.Replace(input, @"&(quot|#34);", """, RegexOptions.IgnoreCase);
     9             input = Regex.Replace(input, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);
    10             input = Regex.Replace(input, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);
    11             input = Regex.Replace(input, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);
    12             input = Regex.Replace(input, @"&(nbsp|#160);", " ", RegexOptions.IgnoreCase);
    13             input = Regex.Replace(input, @"&(iexcl|#161);", "xa1", RegexOptions.IgnoreCase);
    14             input = Regex.Replace(input, @"&(cent|#162);", "xa2", RegexOptions.IgnoreCase);
    15             input = Regex.Replace(input, @"&(pound|#163);", "xa3", RegexOptions.IgnoreCase);
    16             input = Regex.Replace(input, @"&(copy|#169);", "xa9", RegexOptions.IgnoreCase);
    17             input = Regex.Replace(input, @"&#(d+);", "", RegexOptions.IgnoreCase);
    18 
    19             input.Replace("<", "");
    20             input.Replace(">", "");
    21             input.Replace("
    ", "");
    22             //去两端空格,中间多余空格
    23             input = Regex.Replace(input.Trim(), "\s+", " ");
    24             return input;
    25         }
  • 相关阅读:
    Arrays.asList的使用
    php之sql语句 创建数据库、表、插入字段,自动判断是否成功
    初识 canvas 绘图
    自定义音频audio播放器
    我的晨练
    js获取屏幕或可视范围
    js 查看脚本运行时间的办法
    a:hover伪类在ios移动端浏览器内触发无法取消
    js模拟用户触摸事件
    持续健身带来的变化
  • 原文地址:https://www.cnblogs.com/ghelement/p/4511499.html
Copyright © 2011-2022 走看看