in reply to Re: map it back jack
in thread map it back jack
Is there a way to pare it down more? (The Monastery needs a golf course!)my $v; my %myhash = map { $v = $_; s/_/ /g; $v, $_ } @elements;
Update: As I0 points out, this also modifies @elements, which may not be what you want.
johannz's for construct is looking the most elegant to me now.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: map it back jack
by turnstep (Parson) on Dec 16, 2000 at 03:11 UTC | |
Re: Re: Re: map it back jack
by I0 (Priest) on Dec 16, 2000 at 03:18 UTC |