I have this code (undef,undef,undef,undef,undef,$hic) = split(/\*/). It works fine. I was wondering if you could use the "x" operator and remove some of the undef? More like this: ((undef x 5), $hic) = split(/\*/);
I know the above does not work but anyway it can be done?