Jerry Preston wrote:
>
> I know this is a no brainer, but this line of code does not always work:
>
> last if( /^\n/ or /^\s+\n/ );
>
> What am I missing?  Is there a better way?

In general it would be

  last unless /\S/;

but I can't see why what you've written wouldn't work.

Rob



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to