- or download this
$VAR1 = {
'inventors' => 'no content',
...
'inventor' => 'as array no content',
'city,country,name,upper-name' => 'content'
};
- or download this
{
'inventors' => {
...
'type' => 'array'
}
};
- or download this
{
'inventors' => {
...
'type' => 'array'
}
};
- or download this
{
'inventors' => {
...
}
}
};
- or download this
use Data::Dumper;
use XML::Rules;
...
my $data = $parser->parsefile('c:\temp\inventors.xml');
#print Dumper($data);
print "The 1st inventor was $data->{inventors}{1}{name}\n";