我正在尝试使用Mechanize gem解析表,但我不知道如何迭代表。
答案 0 :(得分:2)
Mechanize使用nokogiri
来解析HTML,因此您应该在那里查找文档。也就是说,看看xpath
方法。
以下是解析当前页面的示例:
require 'open-uri'
require 'nokogiri'
doc = Nokogiri::HTML(open('http://stackoverflow.com/questions/4265745/how-to-get-all-text-inside-td-tags-from-table-tag-on-html-page-using-mechaniz'))
table = doc.xpath('//table').first # getting the first table on the page
table.xpath('tr/td').count # getting all the td nodes right below table/tr and counting them
#=> 4