次のようにして、WebページからページタイトルとH1タグを取得しようとしています。
doc.LoadHtml(htmlSourceCode)
txtTitle.Text = doc.GetElementsByTagName("title").InnerText()
txtH1.Text = doc.GetElementsByTagName("H1").InnerText()
For Each channel In doc.DocumentNode.SelectNodes(".//meta[@name='description']")
txtDescription.Text = channel.Attributes("content").Value
Next
上記で機能する唯一のコードは、txtDescription部分です。タイトルとH1の両方はそうではありません。これらの2つのタグを取得するには、どのタイプの構文を使用する必要がありますか?
htmlコードは次のようになります。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html;charset=utf-8" /><title>
The title text is here!
</title><link rel="icon" type="image/x-icon" href="http://www.zzzz.com/favicon.ico" />
....
<div class="main-content">
<div class="block-info">
<div class="container">
<div class="article">
<h1>
This is the H1 tag with the text!</h1>
<p>As the 2nd held tru