您可以使用XPathtext()选择器执行此 *** 作。
require 'hpricot'require 'open-uri'doc = open("http://stackoverflow.com/") { |f| Hpricot(f) }text = (doc/"//*/text()") # array of text valuesputs text.join("n")
然而,这是相当昂贵的 *** 作。可能会有更好的解决方案。
欢迎分享,转载请注明来源:内存溢出
您可以使用XPathtext()选择器执行此 *** 作。
require 'hpricot'require 'open-uri'doc = open("http://stackoverflow.com/") { |f| Hpricot(f) }text = (doc/"//*/text()") # array of text valuesputs text.join("n")
然而,这是相当昂贵的 *** 作。可能会有更好的解决方案。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)