zoukankan      html  css  js  c++  java
  • 过滤HTML字符显示摘要

    public static string GetSummary(string html, int summaryLength)
        
    {
            
    string text = GetHtmlText(html);
            text 
    = DelHTML(text);
            text 
    = Strtitle(text);
            
    if (summaryLength >= text.Length)
                
    return text;
            
    return text.Substring(0, summaryLength)+"";
        }


        
    public static string GetHtmlText(string html)
        
    {
            
    return System.Text.RegularExpressions.Regex.Replace(html, @"<[^>]*>""");
        }

        
    public static string DelHTML(string Htmlstring)//将HTML去除
        {
            

            
    return Htmlstring.Trim();
        }

        
    public static string DelWords(string strtitle)
        
    {
            
    string strContent = strtitle;
            strtitle 
    = Regex.Replace(strContent, "(<H1.*?>|</H1>|</br>|<SPAN.*?>|</SPAN>|<FONT.*?>||<o:p></o:p>)""");
            strContent 
    = strtitle;
            strContent 
    = Regex.Replace(strContent, "(<IMG.*?>)""");
            strContent 
    = Regex.Replace(strContent, "(<P.*?>)""");
            strContent 
    = Regex.Replace(strContent, "(<P>)""");
            strContent 
    = Regex.Replace(strContent, "(&nbsp;)""");
            strContent 
    = Regex.Replace(strContent, "(&rdquo;)""");
            strContent 
    = Regex.Replace(strContent, "(</P>)""");
            strContent 
    = Regex.Replace(strContent, "(</BR>)""");
            strContent 
    = Regex.Replace(strContent, "(<BR>)""");
            strContent 
    = strContent.Replace("<?xml:namespace prefix = o ns = 'urn:schemas-microsoft-com:office:office'/>""");
            
    return strtitle;
        }
  • 相关阅读:
    关于ViewPager、ViewFilpper、ViewFlow三种实现水平向滑动方式的比较
    php 使用curl模拟登录discuz以及模拟发帖
    php 使用curl模拟登录人人(校内)网
    PHP PDO函数库详解
    比CMD更强大的命令行WMIC
    强大的命令行工具wmic
    wmic 命令的一个汇总,功能很强大
    Oracle 11g default profile 默认启用密码过期180天 ORA-28001错误处理
    Oracle 11g密码过期问题解决方案
    SQLPlus 在连接时通常有四种方式
  • 原文地址:https://www.cnblogs.com/cnaspnet/p/1216790.html
Copyright © 2011-2022 走看看