I have a huge XML file with loads of data, I need to create a perl script which will parse the XML and extract only the data that is needed.
Iv been told to use expat, i was wondering if any one had any good tutroial or articles on how to use perl and expat to parse XML.
hope this makes sense im really new to perl.
It would probably be easiest to use expat indirectly through some wrapper such as XML-Twig or XML-Rules. But it would also be possible to parse with a pull parser such as XML::LibXML::Reader from XML-LibXML (which uses libxml instead of expat).