jeanluca has asked for the wisdom of the Perl Monks concerning the following question:
Output is :#! /usr/bin/perl use XML::Simple ; my $doc->[0] = { a => 'a', b => 'b' } ; print $xs1->XMLout($doc, noattr => 1, xmldecl => '<?xml version="1.0">');
For example, in my case I would like to replace it for <record><?xml version="1.0"> <opt> <anon> <a>a</a> <b>b</b> </anon> </opt>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to replace the <anon> tag (XML::Simple)
by GrandFather (Saint) on Apr 19, 2006 at 10:51 UTC | |
by johngg (Canon) on Apr 19, 2006 at 12:34 UTC | |
by GrandFather (Saint) on Apr 19, 2006 at 19:35 UTC | |
by johngg (Canon) on Apr 19, 2006 at 22:25 UTC |