PeeHaa
PeeHaa

Reputation: 72662

Check if element has a specific attribute using HtmlAgilityPack in VB.Net

I'm using HtmlAgilityPack to parse HTML.

I want to check if an element has a specific attribute.

I want to check whether an <a> tag has the href attribute.

Dim doc As HtmlDocument = New HtmlDocument()

doc.Load(New StringReader(content))

Dim root As HtmlNode = doc.DocumentNode
Dim anchorTags As New List(Of String)

For Each link As HtmlNode In root.SelectNodes("//a")
    If link.HasAttributes("href") Then doSomething() 'this doesn't work because hasAttributes only checks whether an element has attributes or not
Next

Upvotes: 4

Views: 3931

Answers (1)

SLaks
SLaks

Reputation: 887453

Like this:

If link.Attributes("href") IsNot Nothing Then

Upvotes: 5

Related Questions