in reply to how to remove html tags

I haven't seen anyone suggest this one yet, but it seems the logical solution: HTML::Strip. From the POD for that module, you'll see this simple example:

use HTML::Strip; my $hs = HTML::Strip->new(); my $clean_text = $hs->parse( $raw_html ); $hs->eof;

It couldn't be easier when you use the right tool for the job.


Dave