Not sure what you want, you seem to mean the "loop variable" and not an "iterator"¹.

Anyway like always there is a way to do it in Perl!

(... but "easy" isn't necessarily the first attribute which comes to mind here... neither is "recommendable"² ;-)

The following code tries to cover all thinkable use cases:

my @a="a".."c"; my @b=1..3; print "@a\n"; our $alias; *alias=\$a[2]; { local $a[1]; # otherwise $a[1] is undefined after the loop while ( $a[1] = <@b>) { $alias=$a[1]+1; print "@a\n"; } } print "@a\n"; __END__ a b c a 1 2 a 2 3 a 3 4 a b 4

Cheers Rolf

( addicted to the Perl Programming Language)

¹) from perlglossary

iterator A special programming gizmo that keeps track of where you a +re in something that you’re trying to iterate over. The "foreach +" loop in Perl contains an iterator; so does a hash, allowing you +to each through it.

²) NB the elements of @b are stringified in the loop...


In reply to Re: Using an array element as a loop iterator by LanX
in thread Using an array element as a loop iterator by gurpreetsingh13

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.