Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

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

by ikegami (Patriarch)
on Oct 19, 2011 at 07:34 UTC ( [id://932316]=note: print w/replies, xml ) Need Help??


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?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://932316]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (9)
As of 2024-04-18 09:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found