in reply to creating a particular hash
$_ = '1,2,3,4,5:one,two,three,four,five'; @_ = split':',$_; @hash{split',',$_[0]}=split',',$_[1]; print $hash{1};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: creating a particular hash
by mr.nick (Chaplain) on Jun 01, 2001 at 05:30 UTC |