LN> I am attempting to create a hash slice from a hash. The hash is:
LN> %hash =("test1" => "test10",
LN>"test2" => "test12" ,
LN> "test3" => "test13")
LN> I want the slice to include only the keys test1 and test3. How can I
LN>
--- Lisa Neclos <[EMAIL PROTECTED]> wrote:
> I am attempting to create a hash slice from a hash. The hash is:
>
> %hash =("test1" => "test10",
>"test2" => "test12" ,
> "test3" => "test13")
>
> I want the slice to include only the
I am attempting to create a hash slice from a hash. The hash is:
%hash =("test1" => "test10",
"test2" => "test12" ,
"test3" => "test13")
I want the slice to include only the keys test1 and test3. How can I
accomplish this?
--