The continue statement
The continue statement 
continue allows a new iteration of a loop without the current iteration
completing. For example you could filter records from a file with 
the 'continue' statement.
 continue example.
continue example.
continue is related to the break
statement.
 
Martin Leslie