c# - HTML Agility pack - How to get URLs, which start with specific text? -
the question in title, more specific: can url html, starts specific text ? may be, there case extract in jquery-style?
$( "a[href^='event_handler']" )
out-of-the-box library doesn't support jquery type selectors (those css selectors fyi), xpath or xslt selectors. of course there people took time , added extension css selector support, see add css selector query engine onto htmlagilitypack.
adding this, can select links string selector you've provided yourself.
Comments
Post a Comment