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


in reply to Re^2: Is there any possible way to convert XML::Twig object to XML::XPath object
in thread Is there any possible way to convert XML::Twig object to XML::XPath object

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?