2010-01-29から1日間の記事一覧

hpricot:An Hpricot Showcase:Hpricot Basics:Fetching the Contents of an Element

>> require "hpricot" => true >> doc = Hpricot("<p class='posted'>A simple <b>test</b> string.</p>") => #<Hpricot::Doc {elem <p class="posted"> "A simple " {elem <b> "test" </b>} " string." </p>}> >> doc.at("p") => {elem <p class="posted"> "A simple " {elem <b> "test" </b>} " string." </p>} >> doc.at…