>>
> # foreach $number (qw <en tre ni>) {
> foreach $number ($extract) {
> push (@return_array, $hash_table{$number});
> }
> return @return_array;
return @hash_table{ @extract };
>>>>This will return a list of values from %hash_table using the keys from
>>>>@extract.
Please explain why this works. thank you.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
