簡體   English   中英

使用ruby和nokogiri使用HTML注釋作為標記來解析HTML

[英]Using ruby and nokogiri to parsing HTML using HTML comments as markers

如何使用ruby從包含這些行的表中提取信息? 是否可以使用nokogiri檢測到評論?

<!-- Begin Topic Entry 4134 --> 
    <tr> 
        <td align="center" class="row2"><image src='style_images/ip.boardpr/f_norm.gif' border='0'  alt='New Posts' /></td> 
        <td align="center" width="3%" class="row1">&nbsp;</td> 
        <td class="row2"> 
            <table class='ipbtable' cellspacing="0"> 
                <tr> 

<td valign="middle"><alink href='http://www.xxx.com/index.php?showtopic=4134&amp;view=getnewpost'><image src='style_images/ip.boardpr/newpost.gif' border='0'  alt='Goto last unread' title='Goto last unread' hspace=2></a></td> 

                    <td width="100%"> 
                    <div style='float:right'></div> 
                    <div> <alink href="http://www.xxx.com/index.php?showtopic=4134&amp;hl=">EXTRACT LINK 1</a>  </div> 
                    </td> 
                </tr> 
            </table> 
            <span class="desc">EXTRACT DESCRIPTION</span> 
        </td> 
        <td class="row2" width="15%"><span class="forumdesc"><alink href="http://www.xxx.com/index.php?showforum=19" title="Living">EXTRACT LINK 2</a></span></td> 
        <td align="center" class="row1" width='10%'><alink href='http://www.xxx.com/index.php?showuser=1642'>Mr P</a></td> 
        <td align="center" class="row2"><alink href="javascript:who_posted(4134);">1</a></td> 
        <td align="center" class="row1">46</td> 
        <td class="row1"><span class="desc">Today, 12:04 AM<br /><alink href="http://www.xxx.com/index.php?showtopic=4134&amp;view=getlastpost">Last post by:</a> <b><alink href='http://www.xxx.com/index.php?showuser=1649'>underft</a></b></span></td> 
    </tr> 
<!-- End Topic Entry 4134 -->
-->

嘗試使用xpath代替:

html_doc = Nokogiri::HTML("<html><body><!-- Begin Topic Entry 4134 --></body></html>") 
html_doc.xpath('//comment()')

您可以實現Nokogiri SAX Parser 這樣做的速度比乍看之下要快。 您將獲得有關元素,屬性和注釋的事件。

在解析器中,您應該記住狀態,例如@currently_interested = true,以了解需要記住的部分,而不要記住的部分。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM