Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    }
    my ($root) = $xp->findnodes('/');
    print $root->toString, "\n";
    
  2. or download this
    use XML::Twig;
    open my $ofh, '>', \my $outxml or die $!;
    ...
    $twig->parse($xml);
    close $ofh;
    print $outxml;