in reply to Re: Re: Re: Test break, but still doing
in thread Test break, but still doing

And if you do have nested loops, you can always break out of the one that you want by using labels...
LAB_1:
  while ([cond1]) {

LAB_2:
    while ([cond2]) {
      next LAB_1 if [cond3];
    }
  }
As archon says, its all there in the perlsyn page.
  • Comment on Re: Re: Re: Re: Test break, but still doing