It never ceases to amaze me, how much more there is to learn in Perl. I've been using Perl for around 5 years and I tried to do something today and was suprised that I could not. Consider the following code...
#!/usr/bin/perl use strict; use warnings; my %hash = ( key => 'value'); my @array = (1..5); foreach $hash{key} (@array){ print "\$hash{key} is $hash{key}\n"; }
I would have assumed that $hash{key} would be a valid iterator variable but it's not. It dies with the message
syntax error at ../../hashodd.pl line 9, near "$hash{key"
Execution of ../../hashodd.pl aborted due to compilation erro

Obviously this is easy to get around and seeing I've never needed it before I guess it isn't a big deal, but I was suprised it wouldn't parse correctly.

The reason I attempted this BTW, was I had some validation routines and figured I would extend them to validate multiple values by wrapping the existing code in a forloop. (the inner code references the hash key). It's trivial to fix but is anyone else suprised by this?

-Lee

"To be civilized is to deny one's nature."

In reply to Surpised by foreach iterator limitation by shotgunefx

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.