0
votes
How would you compare two XML Documents?
Comparing XML documents is complicated. Google for xmldiff (there's even a Microsoft solution) for some tools. I've solved this a couple of ways. I used XSLT to sort elements and attributes, and fi …
5
votes
What would be your choice of Perl XML Parsers for files greater than 15 GB?
A SAX parser is one option. Other options that don't involve loading the entire doc into memory are XML::Twig and …
