- or download this
{
'name' -> orange,
'fruit' -> yes,
...
'vegetable' -> yes,
'count' -> 10
}, etc..
- or download this
{'name' -> orange,
'fruit' -> yes,
...
'count' -> 10
'id' -> 222
}, etc..
- or download this
for ( my $i =0; $i <=$#array1; $i ++) {
foreach my $key (sort keys %{$array2[$i]}){
if ($array1[$i]{$key} ne $$array2[$i]{$key}) {
...
}
}
}