in reply to Re^2: hash array
in thread hash array
or@clk_array = keys %clock_sheet;
@clk_array = values %clock_sheet;
To distribute the suffix over every element, you can use map:
@clk_with_suffix = map "$_-name", @clk_array;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: hash array
by McA (Priest) on Oct 09, 2012 at 11:38 UTC | |
|
Re^4: hash array
by Anonymous Monk on Oct 09, 2012 at 11:54 UTC | |
by bart (Canon) on Oct 09, 2012 at 18:25 UTC | |
by McA (Priest) on Oct 09, 2012 at 11:58 UTC |