in reply to Converting a txt file to excel file

HTML::Parser, HTML::PullParser or HTML::TokeParser. Browse the docs and choice the best interface for your action.
Boris

Replies are listed 'Best First'.
Re^2: Simple HTML parser
by bart (Canon) on Apr 02, 2005 at 15:11 UTC
    My favourite is HTML::TokeParser::Simple, where you get a token (tag, piece of text, comment...) at a time, like you read a text file one line at a time; and each token is an object, which eases unified access. For example, $token->as_is returns the original token's text, whatever kind of token it is.
Re: Simple HTML parser
by MonkPaul (Friar) on Apr 02, 2005 at 14:51 UTC
    Cheers my good man. I'll let you know how it goes. MonkPaul