Re: question on nested if

2003-01-16 Thread John W. Krahn
Seamus Carr wrote: > > I'm trying to count first occurrence of a pattern in a block of lines > which have the same number in first field. I was using if statements to > test the conditions. The problem is that it reads the pattern of every > line, not skipping rest of the block if the pattern ha

Re: question on nested if

2003-01-16 Thread Rob Dixon
Hi Seamus Seamus Carr wrote: > I'm trying to count first occurrence of a pattern in a block of lines > which have the same number in first field. 'Count the first occurrence'? That would be '1' ;-) > I was using if statements > to test the conditions. The problem is that it reads the pattern of

question on nested if

2003-01-16 Thread Seamus Carr
I'm trying to count first occurrence of a pattern in a block of lines which have the same number in first field. I was using if statements to test the conditions. The problem is that it reads the pattern of every line, not skipping rest of the block if the pattern has been matched. Putting th