vote up 6 vote down star
2

Hello, I am a bit new to Perl, but here is what I want to do:

my @array2d;
while(<FILE>){
  push(@array2d[$i], $_);
}

It doesn't compile since @array2d[$i] is not an array but a scalar value. How sould I declare @array2d as an array of array?

Of course, I have no idea of how many rows I have.

flag

77% accept rate

6 Answers

vote up 6 vote down check

To make an array of arrays, or more accurately an array of arrayrefs, try something like this:

my @array = ();
foreach my $i ( 0 .. 10 ) {
  foreach my $j ( 0 .. 10 ) {
    push @{ $array[$i] }, $j;
  }
}

It pushes the value onto a dereferenced arrayref for you. You should be able to access an entry like this:

print $array[3][2];
link|flag
You can also access as $array[3][2] -- the arrow isn't needed between successive [n] or {key} indexes of multi-level data structures. – xdg Nov 25 '08 at 13:54
You're right, thanks for the info. I'm going to update the answer to reflect that. – gpojd Nov 25 '08 at 14:11
vote up 6 vote down

Change your "push" line to this:

push(@{$array2d[$i]}, $_);

You are basically making $array2d[$i] an array by surrounding it by the @{}... You are then able to push elements onto this array of array references.

link|flag
Good explanation. To clarify further, $array2d[$i] is an array reference. In @{$array2d[$i]}, the {} block returns the array reference and the @ sigil dereferences it as an array. I point this out to make it clear that the braces are a bare block, not a device for subverting precedence. – converter42 Nov 25 '08 at 14:16
Thanks for clarifying my explanation - I knew that it worked, but I never knew the technical reasons behind it. Thanks! – BrianH Nov 25 '08 at 14:25
No, they're a dereferencing block, not a bare block. In perl -wle'{ 1 if @{;last}; print "in" } print "out"', the last sees the outer, truly bare block, not the inner block. – ysth Nov 26 '08 at 7:15
vote up 4 vote down

Have a look at perlref and perldsc to see how to make nested data structures, like arrays of arrays and hashes of hashes. Very useful stuff when you're doing Perl.

link|flag
vote up 2 vote down

Programming Perl (O'Reilly) starting on Page 268 covers what you're looking for.

link|flag
vote up 1 vote down

There's really no difference between what you wrote and this:

@{$array2d[$i]} = <FILE>;

I can only assume you're iterating through files.

To avoid keeping track of a counter, you could do this:

...
push @array2d, [ <FILE> ];
...

That says 1) create a reference to an empty array, 2) storing all lines in FILE, 3) push it onto @array2d.

link|flag
I find this syntax really excellent. Good solution. – JS Bangs Nov 25 '08 at 21:05
vote up 0 vote down

Another simple way is to use a hash table and use the two array indices to make a hash key:

$two_dimensional_array{"$i $j"} = $val;
link|flag

Your Answer

Get an OpenID
or

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