HtmlAgilityPack selecting childNodes not as expected

后端 未结 3 1795
北海茫月
北海茫月 2021-02-05 00:56

I am attempting to use the HtmlAgilityPack library to parse some links in a page, but I am not seeing the results I would expect from the methods. In the following I have a Html

3条回答
  •  后悔当初
    2021-02-05 01:29

    With an xpath query you can also use "." to indicate the search should start at the current node.

    HtmlNode imageNode = linkNode.SelectSingleNode(".//img[@alt]");
    

提交回复
热议问题