You could use HTML::TokeParser::Simple and only print text tags.
#almost straight from the TokeParser::Simple POD use HTML::TokeParser::Simple; my $p = HTML::TokeParser::Simple->new( $somefile ); while ( my $token = $p->get_token ) { print $token->as_is if $token->is_text; }
HTH
In reply to Re: Remove HTML tags from document
by pzbagel
in thread Remove HTML tags from document
by matth
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |