in reply to How to remove html tags using HTML::Parser?
Really depends on what you mean by 'extract the tags from it' - if you mean just strip the tags and leave the text then:
Will do what you want. Otherwise you had better explain in more detail.#!/usr/bin/perl + use strict; use warnings; + my $the_file =<<EOH; <html> <head><title>Test</title> </head> <body> <h1>Test Title</h1> <p>This is a test</p></body></html> EOH + use HTML::Parser; my $parser = HTML::Parser->new( text_h => [ sub { print shift; },"dtex +t" ]); + + $parser->parse($the_file);
Update: Okay - but it's not much more difficult to get the stuff into a variable - this is an adaptation to put each separate bit of text into an array element:
Maybe I should update The very old tutorial.#!/usr/bin/perl use strict; use warnings; my $the_file =<<EOH; <html> <head><title>Test</title> </head> <body> <h1>Test Title</h1> <p>This is a test</p></body></html> EOH use HTML::Parser; my $parser = HTML::Parser->new( text_h => [ \&text_handler,"self,dtext +" ], start_document_h => [\&init, "self"] ) +; + $parser->parse($the_file); print @{$parser->{_private}->{text}}; sub init { my ( $self ) = @_; $self->{_private}->{text} = []; } sub text_handler { my ( $self, $text) = @_; push @{$self->{_private}->{text}}, $text; }
/J\
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to remove html tags using HTML::Parser?
by bart (Canon) on Jul 15, 2004 at 15:42 UTC | |
by gellyfish (Monsignor) on Jul 15, 2004 at 16:01 UTC | |
by Anonymous Monk on Jan 16, 2008 at 19:38 UTC | |
by gellyfish (Monsignor) on Jan 08, 2009 at 12:10 UTC |