How do I make an array shorter in Perl? I read some webpages indicating that I can assign:
$#ARRAY = 42;
I read that the use of $# is deprecated. I need a solution that will work for an array of arrays, too. This didn't work:
$#$ARRAY[$i] = 42;
|
up vote
1
down vote
favorite
1
|
|||
|
|
up vote
9
down vote
|
I'm not aware of assigning If you want something a little more readable, use
(Note As for working on arrays of arrays, I assume you mean being able to truncate a nested array via a reference? In that case, you want:
or
|
||
|
|
|
up vote
6
down vote
|
Your options are near limitless (I've outlined five approaches here) but your strategy will be dictated by exactly what your specific needs and goals are. (all examples will convert @array to have no more than $N elements) [EDIT] As others have pointed out, the way suggested in the original question is actually not deprecated, and it provides the fastest, tersest, but not necessarily the most readable solution. It also has the side effect of expanding an array of fewer than $N elements with empty elements:
Least code:
Most efficient for trimming a small number off of a large array:
Undesirable in almost all cases, unless you really love delete():
Useful if you need the remainder of the list in reverse order:
Useful for saving time in long run:
|
||||
|
|
up vote
6
down vote
|
The To use the See the invaluable: http://perlmonks.org/?node=References+quick+reference |
|||
|
|
|
up vote
4
down vote
|
You essentially gave the canonical answer yourself. You shorten an array by setting the last index:
The $#Foo notation for denoting the last index in the array is absolutely not deprecated. Similarly, assigning to it will not be deprecated either. Quoting the perldata documentation:
|
||
|
|
|
up vote
1
down vote
|
|
|||
|
|
|
up vote
0
down vote
|
$#{$ARRAY[$i]} = 42; |
||
|
|
|
up vote
0
down vote
|
You could do
|
|||
|
|
up vote
0
down vote
|
There are two ways of interpreting the question.
Most of the answers so far focus on the former. In my view, the best answer to that is the splice function. For example, to remove 10 elements from the end:
However, because of how Perl manages memory for arrays, the only way to ensure that an array takes less memory is to copy it to a new array (and let the memory of the old array be reclaimed). For this, I would tend to think about using a slice operation. E.g., to remove 10 elements:
Here's a comparison of different approaches for a 500 element array (using 2104 bytes):
You can see that only the slice operation (copied to a new array) has a smaller size than the original. Here's the code I used for this analysis:
|
||
|
|