http://www.perlmonks.org?node_id=629592


in reply to Concatenating XML files

XML::LibXML::Document has a toString() method that converts the parsed DOM into a string, including all the child nodes. It has an optional format parameter, which, when set to zero "...the document is dumped as it was originally parsed".

Depending on how lazy / strict you're feeling you could either:

I'd be surprised if there isn't an XML::Twig equivalent to that - I'm just personally much more familiar XML::LibXML - hope that helps.

Replies are listed 'Best First'.
Re^2: Conatenating XML files
by moritz (Cardinal) on Jul 30, 2007 at 15:51 UTC
    Thank you john_oshea. Probably there is such a method in XML::Twig, but knowing another module that does the job is fine for me as well.