> This conversion to and fro must be inefficient and time consuming.  Is
> there a "better" way to do this?

Use an anonymous array:

  $array{$client} = [ @field ];

  @field = @{ $array{$client} };



Or use the array's reference as the hash's values:

$array{$client} = [EMAIL PROTECTED];



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to