Why don't you exit the subroutine using
return and let the calling procedure do the
last,
next or whatever, depending on what you return? Something like this:
sub loop_control {
if ($x > $stop) {
return "last";
} elsif ($y ne $text) {
foobar();
} else {
return "next";
}
}
# ...
my $return_status = loop_control();
last if $return_status eq "last";
next if $return_status eq "next";
# ...
The alternative is to pass the array (or an array_ref) to the subroutine and loop through the array elements within the subroutine.
In both cases, you avoid the warning (and avoid suppressing this warning) and you gain a better control on what to do, say, before jumping to the next element or exiting the loop altogether. For example, you could use a continue block or a redo, or you could change the two relevant lines above to print some debug statements:
say "exiting the loop" and last if $return_status eq "last";
say "going to next element" and next if $return_status eq "next";
# ...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.