Joshua Colson <[EMAIL PROTECTED]> writes: > @NEWLIST = grep(!/^$/, @LIST);
Is there a reason you're using UPPER CASE? It's not
*wrong*, it's just more perl-ish style to use lower case.
@newlist = grep(!/^$/, @list);
And it lets your Shift key last longer.... :-)
--
Michael R. Wolf
All mammals learn by playing!
[EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
