vote up 2 vote down star

If I have the following array in Perl:

@x = qw(a b c);

and I iterate over it with foreach, then $_ will refer to the current element in the array:

foreach (@x) {
    print;
}

will print:

abc

Is there a similar way to get the index of the current element, without manually updating a counter? Something such as:

foreach (@x) {
    print $index;
}

where $index is updated like $_ to yield the output:

012
flag

7 Answers

vote up 3 vote down check

Not with foreach. If you definitely need the element cardinality in the array use a 'for' iterator.

for($i=0;$i<@x;++$i) {
  print "Element at index $i is ",$x[$i],"\n";
}
link|flag
3  
foreach and for are interchangeable synonyms. Some introductory material tries to use for to mean the C-style loop and foreach for the list iterator loop, but that use of terminology isn't going to be familiar to everyone. – ysth Jun 10 at 13:25
foreach and for are /not/ interchangeable, as this instance shows. – Matthew Flaschen Jun 10 at 14:28
@Matthew Flaschen It is more correct to say that you can replace the keyword foreach with the keyword for, but not necessarily the other way around. – Chas. Owens Jun 10 at 14:35
3  
Quoting from 'perldoc perlvar': The "foreach" keyword is actually a synonym for the "for" keyword, so you can use "foreach" for readability or "for" for brevity. endquote. So they are interchangeable. Try it. – blixtor Jun 10 at 14:37
1  
a C-style for loop (that y'all keep calling a "for loop") doesn't have to increment/decrement a variable, e.g.: for (my $iter = new_iter(); $iter; $iter = $iter->next() ) { ... } – ysth Jun 11 at 5:18
show 1 more comment
vote up 5 vote down

perldoc perlvar does not seem to suggest any such variable.

link|flag
2  
+1 for teaching a man how to fish – Paul Dixon Jun 10 at 10:40
vote up 9 vote down

Like codehead said, you'd have to iterate over the array indices instead of its elements. I prefer this variant over the C-style for loop:

for my $i (0 .. $#x) {
    print "$i: $x[$i]\n";
}
link|flag
vote up 2 vote down

No, you must make your own counter. Yet another example:

my $index;
foreach (@x) {
    print $index++;
}

when used for indexing

my $index;
foreach (@x) {
    print $x[$index]+$y[$index];
    $index++;
}

And of course you can use local $index; instead my $index; and so and so.

EDIT: Updated according to first ysth's comment.

link|flag
0+ is unneedded; postincrement returns 0 if the variable incremented was undef. – ysth Jun 10 at 13:05
You don't need local there. my would work just fine. – ysth Jun 10 at 13:16
@ysth: You can be surprised when someone somewhere in application use same global $index variable as you. But if you write short script and you assume ... no, don't do it. – Hynek -Pichi- Vychodil Jun 10 at 16:17
vote up 0 vote down

Well there is this way:

use List::Rubyish;

$list = List::Rubyish->new( [ qw<a b c> ] );
$list->each_index( sub { say "\$_=$_" } );

see List::Rubyish

link|flag
vote up 4 vote down

In Perl prior to 5.10, you can say

#!/usr/bin/perl

use strict;
use warnings;

my @a = qw/a b c d e/;

my $index;
for my $elem (@a) {
    print "At index ", $index++, ", I saw $elem\n";
}

#or

for my $index (0 .. $#a) {
    print "At index $index I saw $a[$elem]\n";
}

In Perl 5.10, you use state to declare a variable that never gets reinitialized (unlike ones create with my). This lets you keep the $index variable in a smaller scope, but can lead to bugs (if you enter the loop a second time it will still have the last value):

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;

my @a = qw/a b c d e/;

for my $elem (@a) {
    state $index;
    say "At index ", $index++, ", I saw $elem";
}

It won't help you now, but in Perl 6 you will be able to say

#!/usr/bin/perl6

my @a = <a b c d e>;
for @a Z 0 .. Inf -> $elem, $index {
    say "at index $index, I saw $elem"
}

The Z operator zips the two lists together (i.e. it takes one element from the first list, then one element from the second, then one element from the first, and so on). The second list is a lazy list that contains every integer from 0 to infinity (at least theoretically). The -> $elem, $index says that we are taking two values at a time from the result of the zip. The rest should look normal to you (unless you are not familiar with the say function from 5.10 yet).

link|flag
vote up 0 vote down

You shouldn't need to know the index in most circumstances, you can do this

my @arr = (1, 2, 3);
foreach (@arr) {
    $_++;
}
print join(", ", @arr);

In this case, the output would be 2, 3, 4 as foreach sets an alias to the actual element, not just a copy.

link|flag
What would happen if you replace the first line with: my @arr = ('foo', 'bar', 'foo'); – Anon Jun 11 at 8:44
It would print 1, 1, 1 since string scalars evaluate to zero when used in number context. – Charlie Somerville Jun 12 at 23:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.