当前位置:  开发笔记 > 后端 > 正文

查找并替换HTML标记

如何解决《查找并替换HTML标记》经验,为你挑选了3个好方法。

我有以下HTML:



Foo

The quick brown fox.

Bar

Jumps over the lazy dog.

我想将其更改为以下HTML:



Foo

The quick brown fox.

Bar

Jumps over the lazy dog.

如何查找和替换某些HTML标记?我可以使用Nokogiri宝石.



1> 小智..:

试试这个:

require 'nokogiri'

html_text = "

Foo

The quick brown fox.

Bar

Jumps over the lazy dog.

" frag = Nokogiri::HTML(html_text) frag.xpath("//h1").each { |div| div.name= "p"; div.set_attribute("class" , "title") }



2> dylanfm..:

看起来这样可行:

require 'rubygems'
require 'nokogiri'

markup = Nokogiri::HTML.parse(<<-somehtml)


Foo

The quick brown fox.

Bar

Jumps over the lazy dog.

somehtml markup.css('h1').each do |el| el.name = 'p' el.set_attribute('class','title') end puts markup.to_html # >> # >> # >>

Foo

# >>

The quick brown fox.

# >>

Bar

# >>

Jumps over the lazy dog.

# >>



3> Jörg W Mitta..:
#!/usr/bin/env ruby
require 'rubygems'
gem 'nokogiri', '~> 1.2.1'
require 'nokogiri'

doc = Nokogiri::HTML.parse <<-HERE
  
    
      

Foo

The quick brown fox.

Bar

Jumps over the lazy dog.

HERE doc.search('h1').each do |heading| heading.name = 'p' heading['class'] = 'title' end puts doc.to_html

推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有