in reply to
map weirdness
Any particular reason you use:
my @a=map($_ , split(/,/, "BUS2,BE") ) ;
and not
my @a = split /,/, "BUS2,BE";
?
(Update: typo)
Comment on
Re: map weirdness
Select
or
Download
Code
In Section
Seekers of Perl Wisdom