Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 使用 perl 从多表 html 文件中提取特定表
我需要将多表 html 文件中的每个表提取到一个新的文本文件中。您能否使用示例向我展示如何在 perl 中执行此操作?
您正在使用 HTML::TableExtract,对吗?您可以指定要提取哪个表,指定构造函数depth和count参数的值。
depth
count
# The second top-level table. my $te = HTML::TableExtract->new( depth => 0, count => 2 );