如何获取“td”内的所有文本来自“表”的标签使用 Mechanize gem 在 html 页面上标记?

发布于 2024-10-04 07:52:07 字数 44 浏览 0 评论 0原文

我正在尝试使用 Mechanize gem 解析表,但我不知道如何迭代表。

I am trying to parse table using Mechanize gem but i don't know how to iterate table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作业与我同在 2024-10-11 07:52:08

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

Mechanize uses nokogiri for parsing HTML, so you should look up the documentation there. Namely, take a look at xpath method.

Here's an example, parsing the current page:

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文