I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-12-16 01:07:12-08 by grantm in response to 1486
Re: From XML file format to Tabular file format

Before you get too much code written using the old XML::Parser API, I'd recommend you switch to SAX. The SAX API is very similar (so it's easy to switch) but it's object oriented, so you can store anything you like (eg: the filehandle) in your object and it will be available whenever one of your handler methods is called.

The Perl XML FAQ links to a number of articles by Kip Hampton including this one on XML::SAX::Machines.

If you install XML::SAX, be sure to install XML::SAX::Expat too - it's faster than the pure Perl parser in the SAX distribution.

PS: PerlMonks is a better place for this type of question.

Direct Responses: Write a response