ryoakg
10/24/2015 - 4:28 AM

Nokogiri で html いじるときのテンプレ

Nokogiri で html いじるときのテンプレ

# http://www.nokogiri.org/tutorials/modifying_an_html_xml_document.html
# とか参考になる

# 読む
doc = open('xxxxx.html') {|f| Nokogiri::HTML.parse(f)}
# なんかする
doc.css('html > body p').take(10).each(&:to_s)
doc.css('html > body').children[0]['class']
doc.css('html > body')[0].children = '<p>こんにちは</p>'
# 書き込む
open('yyyyy.html', mode='w'){|f| f.print doc.to_html(encoding: 'UTF-8') }