in reply to Re: Removal of "NULL" element in an array?
in thread Removal of "NULL" element in an array?

However for anything trickier , like removing the null at $array[45] , you want to investigate splice
or grep.
@a = grep { $_ ne '' } @data;