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 }