4

次のようにして、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
4

1 に答える 1

10

doc.DocumentNode.SelectSingleNode("//head/title")とを使用できますdoc.DocumentNode.SelectNodes("//body//h1")

または. doc.DocumentNode.Descendants("title").SingleOrDefault()_doc.DocumentNode.Descendants("h1")

于 2013-01-14T14:38:07.367 に答える