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

Taking that one step further, if by "empty" you also mean lines that consist solely of whitespace:
@array = grep /\S/, @array;

[ ar0n ]