in reply to Re: Update XML data with Perl
in thread Update XML data with Perl

Thanks for your answer. But now I have another problem. This works great!!, but how can I do the XMLout to a file? Thanks.

Replies are listed 'Best First'.
Re^3: Update XML data with Perl
by Your Mother (Archbishop) on May 06, 2009 at 20:19 UTC

    Just wanted to mention that XML::LibXML has file reading and writing methods (as well as a bunch of other in/out methods):

    $state = $doc->toFile($filename, $format); $doc = $parser->parse_file( $xmlfilename );
Re^3: Update XML data with Perl
by geekman (Initiate) on May 02, 2009 at 15:08 UTC
    I found how to do this. Thanks.