eff_i_g has asked for the wisdom of the Perl Monks concerning the following question:
I want to wrap "Two" in <?xpp bold?> and <?xpp /bold?>.<root> <element>One<?xpp qa?>Two</element> </root>
use strict; use warnings; use XML::Twig; my $XML = XML::Twig->new( twig_roots => { 'element' => sub { for my $child ($_->cut_children()) { $child->print(); print "\n"; } } }, pretty_print => 'indented' ); $XML->parse(*DATA); print "\n"; __DATA__ <root> <element>One<?xpp qa?>Two</element> </root>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: XML::Twig and Processing Instructions
by mirod (Canon) on Mar 19, 2009 at 16:45 UTC | |
Re: XML::Twig and Processing Instructions
by eff_i_g (Curate) on Mar 19, 2009 at 17:07 UTC | |
by mirod (Canon) on Mar 19, 2009 at 17:42 UTC | |
by eff_i_g (Curate) on Mar 19, 2009 at 18:58 UTC |