in reply to Is there any possible way to convert XML::Twig object to XML::XPath object

You want the resulting XML, not some twig. Instead of printing the resulting XML, place it in a variable.
  • Comment on Re: Is there any possible way to convert XML::Twig object to XML::XPath object

Replies are listed 'Best First'.
Re^2: Is there any possible way to convert XML::Twig object to XML::XPath object
by rnd (Initiate) on Oct 19, 2011 at 07:54 UTC

    Thanks for your reply ikegami.

    I'm not sure how to assign a output of modified xml into a variable.

    Actually 'twig_print_outside_roots => 1,' prints the output in command prompt. I don't know how to redirect the root output to a variable.

      You can open a filehandle on a variable: my $s; open my $fh, ">", \$s; print {$fh} "this goes in the string";, and send the output of twig_print_outside_roots to it by writing twig_print_outside_roots => $fh.

      It is still a bad idea though. Why use 2 different XML modules when one could work?