我想從網站獲取數據。我正在使用HtmlAgilityPack(C#)。在網站內容是這樣的在HtmlAgilityPack,Xpath中使用謂詞
<div id="list">
<div class="list1">
<a href="example1.com" class="href1" >A1</a>
<a href="example4.com" class="href2" />
</div>
<div class="list2">
<a href="example2.com" class="href1" >A2</a>
<a href="example5.com" class="href2" />
</div>
<div class="list3">
<a href="example3.com" class="href1" >A3</a>
<a href="example6.com" class="href2" />
</div>
<div class="list3">
<a href="example4.com" class="href1" >A4</a>
<a href="example6.com" class="href2" />
</div>
<div class="list3">
<a href="example5.com" class="href1" >A5</a>
<a href="example6.com" class="href2" />
</div><div class="list3">
<a href="example6.com" class="href1" >A6</a>
<a href="example6.com" class="href2" />
</div><div class="list3">
<a href="example3.com" class="href1" >A7</a>
<a href="example6.com" class="href2" />
</div>
</div>
在這裏,我們有7類鏈接class =「href1」。我只想抓取3個鏈接(從第3個鏈接到第5個鏈接)。如何獲取這些特定的鏈接?
非常感謝你.. – 2012-02-16 20:25:24