Hacksaw wrote:
>
> > I know this is a no brainer, but this line of code does not always work:
> > last if( /^\n/ or /^\s+\n/ );
>
> Why not
>
> last if /^\s*$/;
>
> You don't need the () in this version of the construction.

That's logically identical to

  last unless /\S/;

Rob




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

Reply via email to