When I read the subject ("while nested in foreach"), I thought this would be a different problem. Just for grins, here is a "gotcha" to watch for: resetting $_.
for (1..10){
print "Before nested \$_ setter: $_\n";
open JUNK, 'junk' or die "Nope: $!";
while(<JUNK>){
# Do nothing, just let $_ get set
}
close JUNK;
print "After nested \$_ setter: $_\n";
}
In this example (perl 5.8.0), the second print statement shows an empty $_ because the diamond operator (in the while loop) overwrote $_ (as we told it to do). So, after the nested while loop, we no longer have the old value in $_ (the counter in the for loop).
Exercises left for the reader: replace the while loop with other $_-using constructs and see how they behave...
Most perl built-ins, and many CPAN modules, are "smart" enough to localize $_ to prevent confusion, but not all.
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.