标签: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 ""; }
标签:style blog color os 使用 ar 文件 div sp
原文地址:http://www.cnblogs.com/defoliate/p/3962114.html