HtmlAgilityPack无法获取字符串索引器

时间:2015-02-18 17:50:42

标签: c# html-parsing html-agility-pack

我想使用HTML Agility Pack解析HTML

当我用int搜索index时,我得到了结果。

HtmlWeb htmlWeb = new HtmlWeb();
HtmlDocument htmlDocument = htmlWeb.Load("http://www.timeanddate.com/worldclock/georgia/tbilisi");

var s1 = htmlDocument.DocumentNode.Descendants().Where(x => x.HasAttributes && x.Attributes[0].Value == "ct");

但是当我想用字符串索引器搜索属性时,我得到了一个例子。

var s2 = htmlDocument.DocumentNode.Descendants().Where(a => a.HasAttributes && a.Attributes["id"].Value == "ct");

当我不使用LINQ并使用谓词委托时,就可以了。

Predicate<HtmlNode> pred = new Predicate<HtmlNode>(forpred);
List<HtmlNode> ss = htmlDocument.DocumentNode.Descendants().ToList().FindAll(pred);
public static bool forpred(HtmlNode node)
{
   if (node.HasAttributes)
   {    
      foreach (HtmlAttribute atribute in node.Attributes)
      {
         if (atribute.Name == "id" && atribute.Value == "ct")
         {
             return true;
         }
      }
   }
   return false;
}


//s1.ToList()[0].InnerHtml
//s2.ToList()[0].InnerHtml 
//ss[0].InnerHtml 

1 个答案:

答案 0 :(得分:0)

因为某些范围有属性但不是 id 。您的代码可以是这样的:

var s2 = htmlDocument.DocumentNode
         .Descendants()
         .Where(a => a.Attributes["id"]!=null && a.Attributes["id"].Value == "ct")
         .ToList();