前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >提取HTML的正文类

提取HTML的正文类

作者头像
跟着阿笨一起玩NET
发布2018-09-18 18:03:56
1.3K0
发布2018-09-18 18:03:56
举报

本文转载:http://blog.csdn.net/cjh200102/article/details/6824895

代码语言:javascript
复制
//2、提取html的正文 类
using System;
 using System.Text;
 namespace HtmlStrip
 {
     class MainClass
     {
         public static void Main (string[] args)
         {
             string str = "<div>abc</div><span>efg</span><br /><script>888</script><!--<PA>WW</PA-->oo";
             //System.IO.StreamReader rd=new System.IO.StreamReader ("/home/lx/test.html");
             //str=rd.ReadToEnd ();
             HtmlParser t = new HtmlParser (str); //
             t.KeepTag (new string[] { "br" }); //设置br标签不过虑
             Console.Write (t.Text ());
         }
         
         
         
     }
     class HtmlParser
     {
         private string[] htmlcode; //把html转为数组形式用于分析
         private StringBuilder result = new StringBuilder ();  //输出的结果
         private int seek; //分析文本时候的指针位置
         private string[] keepTag;  //用于保存要保留的尖括号内容
         private bool _inTag;  //标记现在的指针是不是在尖括号内
         private bool needContent = true;  //是否要提取正文
         private string tagName;  //当前尖括号的名字
         private string[] specialTag = new string[] { "script", "style", "!--" };  //特殊的尖括号内容,一般这些标签的正文是不要的
         
         /// <summary>
         /// 当指针进入尖括号内,就会触发这个属性。这里主要逻辑是提取尖括号里的标签名字
         /// </summary>
         public bool inTag {
             get { return _inTag; }
             set {
                 _inTag = value;
                 if (!value)
                     return;
                 bool ok = true;
                 tagName = "";
                 while (ok) {
                     string word = read ();
                     if (word != " " && word != ">") {
                         tagName += word;
                     } else if (word == " " && tagName.Length > 0) {
                         ok = false;
                     } else if (word == ">") {
                         ok = false;
                         inTag = false;
                         seek -= 1;
                     }
                 }
             }
         }
         /// <summary>
         /// 初始化类
         /// </summary>
         /// <param name="html">
         ///  要分析的html代码
         /// </param>
         public HtmlParser (string html)
         {
             htmlcode = new string[html.Length];
             for (int i = 0; i < html.Length; i++) {
                 htmlcode[i] = html[i].ToString ();
             }
             KeepTag (new string[] {  });
         }
         /// <summary>
         /// 设置要保存那些标签不要被过滤掉
         /// </summary>
         /// <param name="tags">
         ///
         /// </param>
         public void KeepTag (string[] tags)
         {
             keepTag = tags;
         }
         
         /// <summary>
         /// 
         /// </summary>
         /// <returns>
         /// 输出处理后的文本
         /// </returns>
         public string Text ()
         {
             int startTag = 0;
             int endTag = 0;
             while (seek < htmlcode.Length) {
                 string word = read ();
                 if (word.ToLower () == "<") {
                     startTag = seek;
                     inTag = true;
                 } else if (word.ToLower () == ">") {
                     endTag = seek;
                     inTag = false;
                     if (iskeepTag (tagName.Replace ("/", ""))) {
                         for (int i = startTag - 1; i < endTag; i++) {
                             result.Append (htmlcode[i].ToString ());
                         }
                     } else if (tagName.StartsWith ("!--")) {
                         bool ok = true;
                         while (ok) {
                             if (read () == "-") {
                                 if (read () == "-") {
                                     if (read () == ">") {
                                         ok = false;
                                     } else {
                                         seek -= 1;
                                     }
                                 }
                             }
                         }
                     } else {
                         foreach (string str in specialTag) {
                             if (tagName == str) {
                                 needContent = false;
                                 break;
                             } else
                                 needContent = true;
                         }
                     }
                 } else if (!inTag && needContent) {
                     result.Append (word);
                 }
                 
             }
             return result.ToString ();
         }
         /// <summary>
         /// 判断是否要保存这个标签
         /// </summary>
         /// <param name="tag">
         /// A <see cref="System.String"/>
         /// </param>
         /// <returns>
         /// A <see cref="System.Boolean"/>
         /// </returns>
         private bool iskeepTag (string tag)
         {
             foreach (string ta in keepTag) {
                 if (tag.ToLower () == ta.ToLower ()) {
                     return true;
                 }
             }
             return false;
         }
         private string read ()
         {
             return htmlcode[seek++];
         }
 
     }
 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-01-24 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档