Hi all,
How do I access the 'Name' field of the array?
I am using Data::Dumper, this is the output when I use the following (read from XML):
print Data::Dumper($tree);
Code:
[
{
'desc' => {},
'content' => [
{
'desc' => {
'Name' => 'John',
'Date' => 'September 2006',
'Color' => 'Blue',
'Success' => 'TRUE',
'TimeStamp' => '02-SEP-06 07:30 PM',
'Version' => '.25'
},
'text' => [],
'name' => 'Application'
}
]
}
]
Thanks in advance,