Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Exit a block prematurelyGet the prototype (if any) of ... (Berikutnya)
Keywords related to control flow of your perl program

Iterate a block prematurely

Daftar Isi

  • next LABEL

  • next

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

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

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

    next cannot be used to exit a block which returns a value such aseval {}, sub {}, or do {}, and should not be used to exita grep() or map() operation.

    Note that a block by itself is semantically identical to a loopthat executes once. Thus next will exit such a block early.

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

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Exit a block prematurelyGet the prototype (if any) of ... (Berikutnya)