$VAR1 = [
'830974',
'722065',
'722046',
'716963'
];
How can I calculate the array index for the value "722065"?
|
|
The
item with index 1 in list is 722065 |
|||||||||||||||||||
|
|
using
|
|||
|
|
|
Here is how you would find all the positions at which a given value appears:
If you only need the first index, you should use List::MoreUtils::first_index. |
|||||||||||
|
|
If you only need to look up the one item, use If you need to do many lookups, build an index. If your array items are unique, building an index is quite simple. But it's not much more difficult to build one that handles duplicate items. Examples of both follow:
|
|||
|
|
|
Here's hastily written attempt at a reverse look-up using a hash.
This does not account for arrays with duplicate values. I do not endorse this solution for production code. |
|||||||
|
|
Check out the discussion on perlmonks: http://www.perlmonks.org/?node_id=66003 |
|||
|
|
check out the Perl FAQ |
|||||||||||||||||
|
|
|||||
|
|
it's okay, everyone was new to perl at one point $a is the element to print the index of in @list...
|
|||||||||||||||||
|