- or download this
my $records_data = $ref->{'records'}->[0]->{'record'}->...
# or shorter
my $records_data = $ref->{'records'}[0]{'record'}...
- or download this
$pseudohash = [ { key => 5 } ];
- or download this
$pseudohash->{key} = 42;
- or download this
$VAR1 = [
{
...
undef,
42
];
- or download this
my $data = { 'records' => [
{
...
},
],
};
- or download this
my $records_data = $ref->{'records'}->{'record'}->{'recordData'}