| [SOLVED] I've a ton of XML files to transform from an old to new XSD schema using... ...Perl. XSLT? Twig? XML::Simple? The transformations are fairly simple -- Some elements will be axed, some new ones will be added, and some existing ones will be updated. There won't be a whole lot of rearranging and shuffling of pieces, but there will be some. Initially I looked into the various parser modules available for Perl and was headed toward the tree-based ones (I suspected XML::Simple might have been enough) and then someone pointed me to XSLT, which also seems like it ought to fit the bill. Any suggestions on what to use, or how to evaluate which direction would be most appropriate for me? Thanks! |