Re: create hash slice from hash

2001-10-31 Thread Daniel Gardner
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>

Re: create hash slice from hash

2001-10-31 Thread Curtis Poe
--- 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

create hash slice from hash

2001-10-31 Thread Lisa Neclos
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? --