Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
use XML::XPath; my $xp = XML::XPath->new(); my $xml_pi = XML::XPath::Node::PI->new('xml', 'version="1.0"'); my $root = XML::XPath::Node::Element->new('root'); my $node = XML::XPath::Node::Element->new('node'); $root->appendChild($node); # $root->printToFileFunction("filename.xml");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jeffa) Re: XML::XPath printToFile function?
by jeffa (Bishop) on Mar 19, 2002 at 05:26 UTC | |
|
Re: XML::XPath printToFile function?
by Matts (Deacon) on Mar 19, 2002 at 10:22 UTC | |
|
Re: XML::XPath printToFile function?
by mdillon (Priest) on Mar 19, 2002 at 05:41 UTC | |
|
Re: XML::XPath printToFile function?
by Anonymous Monk on Mar 19, 2002 at 16:30 UTC |