Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

perlfunc:next

by gods (Initiate)
on Aug 24, 1999 at 22:42 UTC ( [id://221]=perlfunc: print w/replies, xml ) Need Help??

next

See the current Perl documentation for next.

Here is our local, out-dated (pre-5.6) version:


next - iterate a block prematurely



next LABEL

next



The next command is like the continue statement in C; it starts the next iteration of the loop:

    LINE: while (<STDIN>) {
        next LINE if /^#/;      # discard comments
        #...
    }

Note that if there were a continue block on the above, it would get executed even on discarded lines. If the LABEL is omitted, the command refers to the innermost enclosing loop.

See also continue for an illustration of how last, next, and redo work.


Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-03-19 10:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found