2010-02-25から1日間の記事一覧

hpricot:An Hpricot Showcase:Hpricot Challenge:Excepting the First

まんま require "hpricot" X =<<EOS <body> <div class="test">one</div> <div class="test">two</div> <div class="test">three</div> </body> EOS doc = Hpricot(X) p (doc/"div.test:first-child)") p (doc/"div.test:not(:first-child)") (doc/"div.test:not(:first-child)").remove p doc で、 /usr/local/ruby-1.8.7/lib/r…