> -Original Message-
> From: Steven M. Klass [mailto:[EMAIL PROTECTED]]
> Subject: Multiline searching -
>
>
> Hi all,
>
> I have a text that broken into sections. Each section
> has comments(;) and
> can be placed anywhere, Each section ends w
> OPERATION, FOO, AND BAR. I want to read in this one section
> at a time.
I think it would be simpler to read the entire thing in at once, like
so:
open FILE,'; }
> I want to know how to read this in by
> section (as oposed
> to line) that ends with (*ENDS).
And split on *ENDS, like so
Hi all,
I have a text that broken into sections. Each section has comments(;) and
can be placed anywhere, Each section ends with "*ENDS" . Each section
begins with a *KEYWORD, where keyword is any word like DESCRIPTION,
OPERATION, FOO, AND BAR. I want to read in this one section at