码迷,mamicode.com
首页 > Web开发 > 详细

关于HtmlAgilityPack使用的说明

时间:2014-09-09 12:20:48      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   使用   ar   文件   div   sp   

htmlagilitypack是解析html种的元素,常用的一点就是解析title或者head,但是nuget下载不下来(到笔者写此文章为止),

后来经朋友指点发现,导入HtmlAgilityPack解析路径的时候,不止需要这个dll,还需要微软自己的一个dll,名为:System.Xml.XPath.dll一般在这个文件夹下,

xpath路径:C:\Program Files (x86)\Microsoft SDKs\Silverlight\v4.0\Libraries\Client

eg:

 //获取htmltitle
      public static string  Headtxt(string str)
      {
          if (!String.IsNullOrEmpty(str))
          {
              var doc = new HtmlDocument();
              doc.LoadHtml(str);
              var str1 = doc.DocumentNode.SelectSingleNode("//title").InnerText; ;
              return str1;
          }
          return "";
      }

  

关于HtmlAgilityPack使用的说明

标签:style   blog   color   os   使用   ar   文件   div   sp   

原文地址:http://www.cnblogs.com/defoliate/p/3962114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!