in reply to Re: Adding an element to an array
in thread Adding an element to an array
[ [ "John Doe", "Main Street", "House 1", ], [ "John Doe", "Main Street", "House 1", ], ... ]
my %homes_by_names; foreach my $row ( @data ) { $row{'HOME_COUNT'} = $homes_by_name{ $row{ HOME } }; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Adding an element to an array
by NetWallah (Canon) on Oct 15, 2015 at 15:40 UTC | |
by Anonymous Monk on Oct 15, 2015 at 15:54 UTC | |
by poj (Abbot) on Oct 15, 2015 at 16:12 UTC | |
by Anonymous Monk on Oct 15, 2015 at 17:09 UTC | |
by poj (Abbot) on Oct 15, 2015 at 17:43 UTC | |
|