perlpal has asked for the wisdom of the Perl Monks concerning the following question:

Hi, Im trying to parse a file and print the same in an xml document. I've been pretty successful in parsing the file using the DOM parser.If anyone could provide me more information,id be grateful as the parsing i've done is pretty basic stuff. Creating the xml doc and displayin it using xslt is where im currently stuck at!!!Not finding enough documentation on the same.Please help.

Replies are listed 'Best First'.
Re: Perl and XML
by atemon (Chaplain) on Oct 10, 2007 at 07:00 UTC
Re: Perl and XML
by siva kumar (Pilgrim) on Oct 10, 2007 at 07:14 UTC
    The cpan "XML::Parser" can be used for xml parsing stuff. "XML::Writer" can be used for creating simple xml file. "XML::XSLT" can be helpful for you to create xml-xslt.
Re: Perl and XML
by Krambambuli (Curate) on Oct 10, 2007 at 07:54 UTC
    You may want to have a look on XML::Simple too.

    As the name says, it tends to be simple, but you have parsing and write-out in the same module as XMLin and XMLout.