vote up 5 vote down star
1

Hi,

I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying:

Bareword "break" not allowed while "strict subs" in use at ./final.pl line 154.

Does anyone know of a workaround for this (besides disabling strict subs)?

My code is formatted as follows:

for my $entry (@array){
    if ($string eq "text"){
         break;
    }
}

Thanks

flag

And if you didn't have "strict subs" on, you would have gotten a run-time error instead when it couldn't find a sub named "break". – Paul Tomblin Nov 19 '08 at 20:43

2 Answers

vote up 15 vote down check

Oh, I found it. You use "last" instead of "break"

link|flag
Perl is not C/C++. – Brad Gilbert Nov 20 '08 at 19:43
@Brad - No, it's not - and thank Cthulhu for that! – Sherm Pendley Nov 20 '08 at 22:30
vote up 12 vote down

Additional Data ( In case you have more questions ):

FOO: { 
       for my $i ( @listone ){ 
          for my $j ( @listtwo ){ 
                 if ( cond( $i,$j ) ){ 

                    last FOO;  # --->
                                   # | 
                 }                 # |
          }                        # |
       }                           # |
 } # <-------------------------------
link|flag
You don't actually need the braces after FOO: – cjm Nov 20 '08 at 1:21
1  
You do if you have other code just after the for my $i loop that you also want to skip. The outer {} is a bare block, which is itself a funny kind of loop that can be last/redo/next'd. – ysth Nov 20 '08 at 2:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.