gpt4 book ai didi

perl - 在 Perl 中根据哈希值打印键

转载 作者:行者123 更新时间:2023-12-01 07:05:01 25 4
gpt4 key购买 nike

我需要根据哈希值打印键。这是代码,我写了

foreach $value (values %hash)
{
print "$value\t$hash{$value}\n";
}
错误:我只能打印值,不能打印键。
任何帮助将不胜感激。
谢谢

最佳答案

哈希被设计为通过键访问,而不是通过值访问。您需要遍历键列表,而不是值。

然后您可以使用这些键来访问关联的值。

foreach my $key (keys %hash) {
my $value = $hash{$key};
say "$key = \t$value";
}

关于perl - 在 Perl 中根据哈希值打印键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12304390/

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