使用 nokogiri 如何删除具有特定类名的所有元素

Using nokogiri how do I remove all elements with a certain classname

我正在试验 Ruby 和 Nokogiri。

我已经弄清楚如何按类名打开本地 html 文档和 select 节点:

require 'rubygems'                                                                                               
require 'nokogiri'                                                                                               

doc = Nokogiri::HTML(open("file"))                                                                          


puts doc.css('a.target') 

然后如何在没有我select编辑的节点的情况下转储文档?

应该是:

doc.css('a.target').remove
puts doc.at('html').to_s