It's been a while, so apologies for my rusty question...
Given the current (working) code:
my @keywords = ( 'foo', 'bar', 'kan', 'moo', 'ban', 'noob' );
my @good = grep { /oo/ } @keywords;
my @bad = grep { !/oo/ } @keywords;
my %data = (
keywords => \@keywords,
good => \@good,
bad => \@bad
);
print Dumper(\%data);
The declarations are just transient variables to make sure the hash ends up with an array reference. Is there a way to consolidate the above to simply use the methods in the hash declaration?
I'm trying to arrive at something similar to the following (non-working code):
my @keywords = ( 'foo', 'bar', 'kan', 'moo', 'ban', 'noob' );
my %data = (
keywords => \@keywords,
good => grep { /oo/ } @keywords,
bad => grep { !/oo/ } @keywords
);
print Dumper(\%data);
[ ]does. – ikegami Aug 30 '12 at 5:09qw(foo bar)instead of'foo', 'bar'. – TLP Aug 30 '12 at 7:50