Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您只能选择那些<a>具有例如href属性集的标签:
<a>
href
var doc = new HtmlDocument(); doc.LoadHtml(html); var anchors = doc.DocumentNode .SelectNodes("//a[@href]") .ToList(); foreach (var anchor in anchors) { //process your node here }