The next Statement
Like last, next alters the ordinary sequential flow of execution. However, next causes execution to skip past the rest of the innermost enclosing looping block without terminating the block.[] next is used like this:
[2] If a
continueblock exists for the loop, which we haven't yet discussed,nextgoes to the beginning of thecontinueblock rather than to the end of the block. Pretty close.
while (something) {firstpart;firstpart;firstpart; if (somecondition) {somepart;somepart; next; }otherpart;otherpart; # next comes here }
If somecondition is true, then somepart is executed, and otherpart is skipped around.
Once again, the block of an if statement doesn't count as a looping block.