> 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.

'*' matches zero or more of the preceding RE.
-- 
The future is what the present can bear.
http://www.hacksaw.org -- http://www.privatecircus.com -- KB1FVD



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

Reply via email to