in reply to Re: Combining two references
in thread Combining two references
... my $data1 = [ { 'NAME' => 'PAUL DY', 'DATE' => '2009-05-05', 'NUMBER' => '00001', }, ]; my $data2 = [ { 'CAR1' => '1b', 'CAR2' => '2b', 'CAR3' => '3b', 'CAR4' => '3d', }, ]; ...
my $data3 = [ { 'NAME' => 'PAUL DY', 'DATE' => '2009-05-05', 'NUMBER' => '00001', 'CAR1' => '1b', 'CAR2' => '2b', 'CAR3' => '3b', 'CAR4' => '3d', }, ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Combining two references
by CountZero (Bishop) on Jun 10, 2015 at 15:04 UTC | |
by Anonymous Monk on Jun 10, 2015 at 15:16 UTC |