RE: Problem with range operator

2006-03-17 Thread Brian Raven
Craig Cardimon <> wrote: > I need to read a large text file line by line until a certain tag is > found, say . This tag will exist on a line by itself. Then I > need read in all subsequent lines, appending them to each other, > until the ending tag is found, again on a line by itself. > > My l

Re: Problem with range operator

2006-03-16 Thread $Bill Luebkert
Lynn. Rickards wrote: > Craig Cardimon wrote: > >>I need to read a large text file line by line until a certain tag is >>found, say . This tag will exist on a line by itself. Then I need >>read in all subsequent lines, appending them to each other, until the >>ending tag is found, again on a li

Re: Problem with range operator

2006-03-16 Thread Lynn. Rickards
Craig Cardimon wrote: I need to read a large text file line by line until a certain tag is found, say . This tag will exist on a line by itself. Then I need read in all subsequent lines, appending them to each other, until the ending tag is found, again on a line by itself. My logic, if you c

RE: Problem with range operator

2006-03-16 Thread Bowie Bailey
Craig Cardimon wrote: > I need to read a large text file line by line until a certain tag is > found, say . This tag will exist on a line by itself. Then I need > read in all subsequent lines, appending them to each other, until the > ending tag is found, again on a line by itself. > > My logic,