Jun 022010
How to convert hash to array in Perl?
Answer:
It is easy to convert hash to array in Perl.
The following code extracted all values from a hash and save into an array.
my @a = values %h;
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
How to convert hash to array in Perl?
Answer:
It is easy to convert hash to array in Perl.
The following code extracted all values from a hash and save into an array.
my @a = values %h;