Felix Geerinckx wrote:
> 
> > my @data = map {length($_) ? $_ : undef} split(@$row);
> 
> You do realize that you are splitting $_ here?
Now I do (I should have stayed in bed this morning).  Of course I meant:

my @data = map {length($_) ? $_ : undef} @$row;


--
  Simon Oliver

Reply via email to