2
votes
What is an XML parser? Using Expat
Instead of expat, you might want to have a look at libxml2, which is probably already included in your distribution. It's a lot more powerful than expat, and gives you all sorts of goodies: DOM (tr …
3
votes
What would be your choice of Perl XML Parsers for files greater than 15 GB?
As you would expect I would suggest XML::Twig, which will let you process the file chunk-by-chunk. This of course assumes that you …
