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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 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') }

以上是关于ruby Nokogiriでhtmlいじるときのテンプレ的主要内容,如果未能解决你的问题,请参考以下文章

html 安卓の铬で表示したときのタブの色を设定する。

ini Nginx的で代理かませるとき

apache_conf CPIで基本认证をかけるとき

csharp 【C#】XmlWriterでxmlを书くときのエスケープ文字に关するTips.WriteRaw + SecurityElement.Escapeがいい感じっぽい。

xml VIMで插入から普通のモードに移行するとき,自动的にIMEを断にする(岩钉钢环)

text Gitで致命:远程起源已经存在。が出るときref:https://qiita.com/_bns/items/c3f9559890b5205761b8