gpt4 book ai didi

perl - 如何获取数组中元素的索引?

转载 作者:行者123 更新时间:2023-12-03 10:47:02 25 4
gpt4 key购买 nike

Perl是否具有内置函数来获取数组中元素的索引?还是我需要自己编写这样的函数? [等同于PHP array_search()或JavaScript array.indexOf()]

最佳答案

use List::Util qw(first);
$idx = first { $array[$_] eq 'whatever' } 0..$#array;

(列表:: Util是核心)

要么
use List::MoreUtils qw(firstidx);
$idx = firstidx { $_ eq 'whatever' } @array;

(列表:: MoreUtils在CPAN上)

关于perl - 如何获取数组中元素的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3222138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com