Even if I have the same name for the loop variable, the following two $things are different right?

Yes, they are two separate variables lexically scoped to the loops.

My question is, is this considered ok in Perl? or am I to have a seperate loop variable for each of the arrays?

That depends on your definition of "ok" ;-) Techincally, yes, you can do it. I just wouldn't consider it good style. Also, what would be the point of re-using this variable? As you've already seen with your test code, its value will be locally scoped to the foreach loop, so you don't seem to be gaining anything by doing it, and the problem is that the code might get confusing by re-using the same variable.

Update: See also the first few paragraphs of Foreach Loops.


In reply to Re: declaring a common loop variable by haukex
in thread declaring a common loop variable by pritesh_ugrankar

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.