in reply to Re: How to remove html tags using HTML::Parser?
in thread How to remove html tags using HTML::Parser?
To the OP: reconsider HTML::TokeParser, or likely even better yet, HTML::TokeParser::Simple, as an alternative. It's a different approach, which I personally find a lot easier: you get a stream of tokens (an opening or closing tag, a piece of text), which you can read one at a time, like lines from a file, instead of a bunch of callbacks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to remove html tags using HTML::Parser?
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 |