Re: How do you continue in a for loop?



On Jul 31, 2:30 pm, Thierry <lamthie...@xxxxxxxxx> wrote:
In other languages, the for loop has a continue statement feature to
skip an interation, how do you do it in perl?

Thierry

C++ 'continue' ==> Perl 'next'
C++ 'break' ==> Perl 'last'
C++ ???? ==> Perl 'redo' (restarts the current iteration)

Paul Lalli

.