in reply to Re^2: Array of hashes reference problem
in thread Array of hashes reference problem
When using strict, you have to declare $arrayAoH first. Besides,
should read:$arrayAoH$j{$key} = $value;
and$arrayAoH[$j]{$key} = $value;
should beif (($arrayAoH$j{"Model Number"} !~ m/^Foo/)){
Please post actual code...if (($arrayAoH[$j]{"Model Number"} !~ m/^Foo/)){
Paul
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Array of hashes reference problem
by tlemons (Novice) on Jun 22, 2005 at 18:30 UTC |