> Also there are no delimiting characters to search. 
> And one more problem is that they rarely end the
> sentence with a period.  The only good news is that
> there are never more than 4 lines.  But because there
> is almost always a newline, I can't use:
> 
> while <>
> 
> because it searches line by line.
> 
> Any suggestions on capturing several lines at once?

local $/ = undef;  # Sets input seperater to null...
                   # so you get everything in one lump
                   # when you read, commonly called
                   # 'slurping' files

Jonathan Paton

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com

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

Reply via email to