Htmlagilitypack Official document (ii) "selectors"

Source: Internet
Author: User
Tags xpath

Selectors allows you to select an HTML node from the HTMLDocument. Methods

name Description
SelectNodes () Selects a list of nodes matching the XPath expression.
selectSingleNode (String) Selects the XmlNode that matches the XPath expression.
SelectNodes Method

Select the list of nodes that match the HtmlAgilityPack.HtmlNode.XPath expression. Parameters:

An xpath:xpath expression. return:

A htmlagilitypack.htmlnodecollection containing a collection of nodes that match the HtmlAgilityPack.HtmlNode.XPath query, or null if no nodes match the XPath expression.

The following example uses the SelectNodes method to select the first node that matches an XPath expression.

var htmldoc = new HTMLDocument ();
htmldoc.loadhtml (HTML);

String name = Htmldoc.documentnode
    . SelectNodes ("//td/input")
    . A ()
    . attributes["Value"]. Value;

The following example selects all nodes that match an XPath expression.

var htmldoc = new HTMLDocument ();
htmldoc.loadhtml (HTML);

var htmlnodes = htmlDoc.DocumentNode.SelectNodes ("//td/input");

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.