Agility pack を使用して Html を単一の文字列に解析するのを手伝ってくれる人はいますか?
次の形式に似たHtmlを解析しようとしていますが、
<blockquote>\n
<p>Here is the first collection:<\/p>\n
<ol>\n
<li>List1<\/li>\n
<li>List2<\/li>\n
<li>List3<\/li>\n
<\/ol>\n
<p>Here is the second collection:<\/p>\n
<ol>\n
<li>List1<\/li>\n
<li>List2<\/li>\n
<\/ol>\n
<\/blockquote>
次のメソッドを使用して、「p」と「li」と「blockquote」を取得しようとしました。ただし、メソッド .Descendants は「p」、「li」、および「blockquote」の個別のコレクションを作成しますが、個別の要素を順番に配置して単一の文字列に格納する必要があります。
IEnumerable<HtmlNode> h3Tags = document.DocumentNode.Descendants("p"); foreach (var h3tag in h3Tags) {}
たとえば、「ここに最初のコレクションがあります: List1 List2 List3 ここに 2 番目のコレクション List1 List2 があります」という文字列ストアが必要です。
ありがとうございました!