Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Parsing HTML

by thunders (Priest)
on Jun 14, 2004 at 06:05 UTC ( [id://366418]=note: print w/replies, xml ) Need Help??


in reply to Parsing HTML

Many of the modules that inherit from HTML::Parser are quite capable for this kind of task. I like HTML::TokeParser::Simple.
#!/usr/bin/perl -w use strict; use LWP::Simple; use HTML::TokeParser::Simple; my $site = $ARGV[0]; my $content = get($site); my $parser = HTML::TokeParser::Simple->new(\$content); while ( my $token = $parser->get_token ) { next unless $token->is_text; print $token->as_is; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://366418]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-19 00:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found