in reply to Strip HTML tags
Should do the trick. This quarter's Perl Journal has a good article on it (the included docs need work)my $tree = HTML::TreeBuilder->new; $tree->parse_file('foo.html'); $non_html = $tree->as_text();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Strip HTML tags
by dvergin (Monsignor) on Feb 19, 2004 at 02:01 UTC |