HTML-Tree is a Perl library for parsing HTML into DOM-like trees. It includes HTML::TreeBuilder and HTML::Element.

learn more… | top users | synonyms

-3
votes
1answer
93 views

install HTML::TreeBuilder::XPath getting failed [closed]

I am trying to install ** HTML::TreeBuilder::XPath of version 0.13 ** but it gets failed. Can anyone suggest what could be the cause.
0
votes
1answer
76 views

Update column values in an HTML file using HTML::TreeBuilder

I have an HTML file with several tables (all tables have same number of columns and same column names). The tables are separated by other HTML tags. For each row in each table, I would like to change ...
0
votes
1answer
57 views

Extracting Text in body that is not part of tag with HTML::TreeBuilder

I have some ugly html that is emailed to my program that looks like: <html> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> </head> ...
2
votes
2answers
105 views

Perl's HTML::Element - dumping just the descendants as HTML

I'm having trouble trying to output the contents of a matched node that I'm parsing: <div class="description">some text <br/>more text<br/></div> I'm using ...
0
votes
1answer
137 views

HTML parser by perl script

#!/usr/bin/perl use HTML::TreeBuilder; my $tree = HTML::TreeBuilder->new; $tree->parse_file("sample.html"); foreach my $anchor ($tree->find("p")) { print $anchor->as_text, "\n"; } ...
0
votes
1answer
155 views

HTML::TreeBuilder->new_from_url() in perl not working

Using HTML::TreeBuilder->new_from_url() want to go to a website say https://abc.com/index.html and want to display some values from that html page. https://abc.com/index.html asks for user ...
2
votes
1answer
1k views

HTML Treebuilder XPath to Extract Links

I am writing a basic script which just extracts all the links from a web page. It is written in Perl and makes use of WWW::Mechanize and HTML::Treebuilder::Xpath modules, both of which I have ...
3
votes
2answers
430 views

How to find just the direct descendants with HTML::TreeBuilder?

Suppose I've a HTML tree like this: div `- ul `- li (*) `- li (*) `- li (*) `- li (*) `- ul `- li `- li `- li How do ...
1
vote
1answer
220 views

HTML::TagFilter remove div based on class

I'm trying to use a perl script to pull content from static html files on a server. I'd like to pull the content of a specific div. I know the div by its class name ("getme"). I can get to the div ...
0
votes
2answers
337 views

Web crawler text formatting

I have the following code to access a HTML table. my $table = $tree->look_down(_tag => "table", id => "moduleDetail"); however the text is coming down not formatted, because the web page ...
0
votes
3answers
216 views

Perl: why does this web scraper regex work inconsistently?

I have run into another problem in relation to a site I am trying to scrape. Basically I have stripped most of what I don't want from the page content and thanks to some help given here have managed ...
2
votes
2answers
617 views

How do I visualise/pretty-print a HTML DOM tree?

Now that I can navigate a Web page via WWW::Mechanize and get information via HTML::TreeBuilder::XPath by accessing an id, I am left using Firebug to read the DOM in order to discover the layout of ...
2
votes
1answer
397 views

How to rearrange html content with HTML::Treebuilder

I'm writing a script to rearrange html content and I'm stuck with 2 problems. I have this html structure, which is movie titles and release years with thumbnails grouped in 5 columns. I want to ...
1
vote
2answers
353 views

Perl HTML::TreeBuilder adding <html>, <head> and <body> tags to parsed content, how to stop or work around it?

Background: I'm using HTML::TreeBuilder to parse an entire html page, say "whole_page" for reference's sake. I'm then using the inherited parse_content method (same as for whole_page) of a new ...
0
votes
1answer
370 views

How to keep data marked as UTF-8 after parsing with HTML::Tree?

I wrote a script, where i slurp in UTF-8 encoded HTML-file and then parse it to tree with HTML::Tree. Problem is that after parsing the strings are not marked as UTF-8 anymore. As _utf8_on() is not ...
2
votes
2answers
600 views

Specify multiple classes in HTML::Element's look_down routine Perl?

I am using HTML::TreeBuilder to parse some HTML. Can you specify multiple classes in the 'look_down' routine? For in stance when searching through HTML using- for ( $tree->look_down( 'class' ...
-1
votes
1answer
192 views

How exactly does the “parent” function from HTML::TreeBuilder work?

The documentation on CPAN doesn't really explain this behavior unless I'm missing something. I've put together some quick test code to illustrate my problem: #!/usr/bin/perl use warnings; use strict; ...
2
votes
1answer
283 views

memory leak in HTML::TreeBuilder

I have some Perl code: use HTML::Parse; use HTML::FormatText; # ... my $txtFormatter = HTML::FormatText->new(); while ( ... ) { # some condition my $txt = # get from a file my ...