in reply to Using Perl to create XML
One interesting approach would be to have a Data::Dumper like functionality that would output in XML format. Does anyone know if there is a moule out there that does this?
would print something like$f{foo}=[{a=>5,b=>7},{a=>1,b=>2}]; print DumperXML(\%f);
or something like that....<foo> <element> <a>5</a> <b>7</b> </element> <element> <a>1</a> <b>2</b> </element> </foo>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Using Perl to create XML
by btrott (Parson) on Jul 20, 2000 at 21:01 UTC |