in reply to Re: Removing empty string elements from an Array
in thread Removing empty string elements from an Array

Masem wrote:

 @array = grep { $_ ne '' } @array;

Wow, you can't improve on perfection, very cute. Long-handed its an easy problem, but clumsy because this is succinct and cute...