HTMLAgilityPackを使用して HTML ページを解析しようとしていますが、現在選択しているテーブル要素の次のテーブル要素を選択したいと考えています。
これを使用したいテーブルの直前のテーブルを選択しています。
foreach (HtmlNode table in doc.DocumentNode.SelectNodes("//table[@class='KnownClass']"))
html の例
<table class="KnownClass"> … </table>
<!-- other html that does not contain tables here -->
<table> … </table> <!-- want to select this table -->
これを行う簡単な方法はありますか?