From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: 02 March 2007 16:29
To: activeperl@listserv.ActiveState.com
Subject: exiting an eval block inside a loop?

> Gurus, 
> 
> I've looked in the Camel and Leopard, and they're mum on this topic.
Is it possible/permitted to exit an eval > block that's running inside a
loop, or will that break something?  Quickie example code: 
> 
> LABEL: until ($foo eq q{}) { 
>    $foo = $array{$ndx++}; 
>   
>    eval { 
>       for ($foo) { 
>          /^abc/o && do { 
>             next LABEL if ($_ =~ /ZZZ$/);  # CAN I DO THIS? 
>             # do something 
>          }; 
>          /^def/o && do { 
>             next LABEL if ($_ =~ /RST$/); 
>             # do something else 
>          }; 
>       } 
>    }; 
>    $@ and die "Error in string value"; 
> } 

The documentation ('perldoc -f eval') addresses this issue to some
extent. The second from last paragraph (on my installation, at least)
discusses this.

However, you could also have just tried it (the suck-it-and-see approach
is one of the things that Perl is good at). If you did you would have
seen the warning that it causes (you do have warnings enabled, don't
you). You can inhibit the warning (see following example), but it is
better to avoid code that generates warnings as far as possible. If you
really must do it, please make sure that you document what you are doing
and why.

------------------------------------
use strict;
use warnings;

for my $i (1..10) {
    # Try with and without the following statement.
    no warnings qw{exiting};
    eval {
        print "i=$i\n";
        next;
        print "bottom of loop\n";
    };
    die $@ if $@;
}
------------------------------------

HTH

-- 
Brian Raven 

=========================================
Atos Euronext Market Solutions Disclaimer
=========================================

The information contained in this e-mail is confidential and solely for the 
intended addressee(s). Unauthorised reproduction, disclosure, modification, 
and/or distribution of this email may be unlawful.
If you have received this email in error, please notify the sender immediately 
and delete it from your system. The views expressed in this message do not 
necessarily reflect those of Atos Euronext Market Solutions.

Atos Euronext Market Solutions Limited - Registered in England & Wales with 
registration no. 3962327.  Registered office address at 25 Bank Street London 
E14 5NQ United Kingdom. 
Atos Euronext Market Solutions SAS - Registered in France with registration no. 
425 100 294.  Registered office address at 6/8 Boulevard Haussmann 75009 Paris 
France.

L'information contenue dans cet e-mail est confidentielle et uniquement 
destinee a la (aux) personnes a laquelle (auxquelle(s)) elle est adressee. 
Toute copie, publication ou diffusion de cet email est interdite. Si cet e-mail 
vous parvient par erreur, nous vous prions de bien vouloir prevenir 
l'expediteur immediatement et d'effacer le e-mail et annexes jointes de votre 
systeme. Le contenu de ce message electronique ne represente pas necessairement 
la position ou le point de vue d'Atos Euronext Market Solutions.
Atos Euronext Market Solutions Limited Société de droit anglais, enregistrée au 
Royaume Uni sous le numéro 3962327, dont le siège social se situe 25 Bank 
Street E14 5NQ Londres Royaume Uni.

Atos Euronext Market Solutions SAS, société par actions simplifiée, enregistré 
au registre dui commerce et des sociétés sous le numéro 425 100 294 RCS Paris 
et dont le siège social se situe 6/8 Boulevard Haussmann 75009 Paris France.
=========================================

_______________________________________________
ActivePerl mailing list
ActivePerl@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to