I very strongly recommend against XML::Simple! A good replacement for reading XML is XML::Rules, its output is much more customizable. Update: If you want func to be an arrayref, just replace 'as is' by 'as array'.
use warnings;
use strict;
use XML::Rules;
use Data::Dump;
my $parser = XML::Rules->new(
stripspaces => 3|4,
rules => [
root=>'pass',
config=>'', build=>'',
ref=>'by name', func=>'as is',
_default => sub { die "Unknown tag $_[0]" }
] );
my $data = $parser->parse(<<'END_XML');
<root>
<config>
<build host="https://cpzdomain.local"/>
</config>
<ref name="abc_sia_%version1.ref%">
<func envname = "test01" objectdir = "/home/pv66"
base="default_771"/>
</ref>
</root>
END_XML
dd $data;
__END__
{
"abc_sia_%version1.ref%" => {
func => { base => "default_771", envname => "test01",
objectdir => "/home/pv66" },
},
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|