$VAR1 = [
'830974',
'722065',
'722046',
'716963'
];
如何计算值“722065”的数组索引?
答案 0 :(得分:33)
来自List::MoreUtils的firstidx
功能可以提供帮助:
use strict;
use warnings;
use List::MoreUtils qw(firstidx);
my @nums = ( '830974', '722065', '722046', '716963' );
printf "item with index %i in list is 722065\n", firstidx { $_ eq '722065' } @nums;
__END__
item with index 1 in list is 722065
答案 1 :(得分:24)
使用List::Util
,这是一个核心模块,与List::MoreUtils
不同,不是:
use List::Util qw(first);
my @nums = ( '830974', '722065', '722046', '716963' );
my $index = first { $nums[$_] eq '722065' } 0..$#nums;
答案 2 :(得分:14)
以下是如何找到给定值出现的所有位置:
#!/usr/bin/perl
use strict;
use warnings;
my @x = ( 1, 2, 3, 3, 2, 1, 1, 2, 3, 3, 2, 1 );
my @i = grep { $x[$_] == 3 } 0 .. $#x;
print "@i\n";
如果您只需要第一个索引,则应使用List::MoreUtils::first_index。
答案 3 :(得分:7)
如果您只需要查找一个项目,请使用其他人所说的firstidx
。
如果您需要进行多次查找,请构建索引。
如果您的数组项是唯一的,那么构建索引非常简单。但是构建一个处理重复项目的方法并不困难。以下两个例子如下:
use strict;
use warnings;
use Data::Dumper;
# Index an array with unique elements.
my @var_uniq = qw( 830974 722065 722046 716963 );
my %index_uniq = map { $var_uniq[$_] => $_ } 0..$#var_uniq;
# You could use hash slice assinment instead of map:
# my %index_uniq;
# @index_uniq{ @var_uniq } = 0..$#var_uniq
my $uniq_index_of_722065 = $index_uniq{722065};
print "Uniq 72665 at: $uniq_index_of_722065\n";
print Dumper \%index_uniq;
# Index an array with repeated elements.
my @var_dupes = qw( 830974 722065 830974 830974 722046 716963 722065 );
my %index_dupes;
for( 0..$#var_dupes ) {
my $item = $var_dupes[$_];
# have item in index?
if( $index_dupes{$item} ) {
# Add to array of indexes
push @{$index_dupes{$item}}, $_;
}
else {
# Add array ref with index to hash.
$index_dupes{$item} = [$_];
}
}
# Dereference array ref for assignment:
my @dupe_indexes_of_722065 = @{ $index_dupes{722065} };
print "Dupes 722065 at: @dupe_indexes_of_722065\n";
print Dumper \%index_dupes;
答案 4 :(得分:3)
这是使用哈希反向查找的匆匆写入尝试。
my $VAR1 = [ '830974', '722065', '722046', '716963' ];
my %reverse;
$reverse{$VAR1->[$_]} = $_ for 0 .. @$VAR1 - 1;
print $reverse{722065};
这不考虑具有重复值的数组。我不认可这个生产代码的解决方案。
答案 5 :(得分:1)
查看Perl FAQ
答案 6 :(得分:0)
use strict;
use Data::Dumper;
sub invert
{
my $i=0;
map { $i++ => $_ } @_;
}
my @a = ('a','b','c','d','e');
print Dumper @a;
print Dumper invert @a;
答案 7 :(得分:-7)
没关系,每个人都有新的perl
$ a是打印@list ...
中索引的元素my @list = (124124, 323, 156666, 124412, 3333, 4444444444, 124124124, 24412);
my $a = 4444444444;
print
substr($_=($,=
chr($==39)).(
join$,,@list).$,,$=-$=,
index$_,$,.$a.$,)=~
tr/'//+$=---$=;