Date: Sun, 16 Sep 2001 20:46:48 GMT From: Dave Tweed Subject: Re: Discontinue the loop Message-Id: <3BA50E7A.B3F38F8D@acm.org> uma shanker wrote: > what are the possible ways to come out of this loop. I searched the > docs, but found no special info. > > # I want to ignore the first element in @lines How about: foreach $line (@lines[1..$#lines]) { ..... } -- Dave Tweed