in reply to Req Expresson on my output
Close, but you needn't keep repeating the $_. Try.
foreach (keys %data) { next if m/^aaa$/ || m/^\[/ || m/\// || m/and/; print "$_\n"; }
The match operator m// will match against $_ unless you use the bind operator =~. The above is equivalent to
foreach (keys %data) { next if $_ =~ m/^aaa$/ || $_ =~ m/^\[/ || $_ =~ m/\// || $_ =~ m/and/; print "$_\n"; }
Okay you lot, get your wings on the left, halos on the right. It's one size fits all, and "No!", you can't have a different color.
Pick up your cloud down the end and "Yes" if you get allocated a grey one they are a bit damp under foot, but someone has to get them.
Get used to the wings fast cos its an 8 hour day...unless the Govenor calls for a cyclone or hurricane, in which case 16 hour shifts are mandatory.
Just be grateful that you arrived just as the tornado season finished. Them buggers are real work.
|
---|