How do I remove a node with Nokogiri?
问题 How can I remove <img> tags using Nokogiri? I have the following code but it wont work: # str = '<img src="canadascapital.gc.ca/data/2/rec_imgs/5005_Pepsi_H1NB.gif"/…; testt<a href="#">test</a>tfbu' f = Nokogiri::XML.fragment(str) f.search('//img').each do |node| node.remove end puts f 回答1: have a try! f = Nokogiri::XML.fragment(str) f.search('.//img').remove puts f 回答2: I prefer CSS over XPath, as it's usually much more readable. Switching to CSS: require 'nokogiri' doc = Nokogiri::HTML('