in reply to Removing null values from within an array
my @n = array with nulls; @n = map { defined $_ ? $_ : () } @n; [download]