Html Agility Pack - Problem selecting subnode

时间秒杀一切 提交于 2019-11-28 04:42:40
Oscar Mederos

A few things that will help you when working with HtmlAgilityPack and XPath expressions.

If run is an HtmlNode, then:

  1. run.SelectNodes("//div[@class='date']")
    Will will behave exactly like doc.DocumentNode.SelectNodes("//div[@class='date']")

  2. run.SelectNodes("./div[@class='date']")
    Will give you all the <div> nodes that are children of run node. It won't search deeper, only at the very next depth level.

  3. run.SelectNodes(".//div[@class='date']")
    Will return all the <div> nodes with that class attribute, but not only next to the run node, but also will search in depth (every possible descendant of it)

You will have to choose between 2. or 3., depending on which one satisfy your needs :)

In XPATH, // means all children and grand children below the current node. So you need to come up with a more restrictive XPATH expression. If you provide the real HTML, and what you're looking for exactly, we can help you dig further.

About the error you have:

.div[@class='date'] is invalid because . is sticked to div. You could use div[@class='date'], or ./div[@class='date'] which I believe are equivalent. This is because . is an XPATH axe, which is an alias for self and means "the current node".

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!