如何獲得以下散列數組的大小?在Perl中查找散列數組的大小
我認爲這將做到這一點,但沒有奏效...
print Dumper scalar $item->{'detail'};
$VAR1 = [
{ 'content' => undef, 'name' => 'entree', 'url_name' => 'entree' },
{ 'content' => undef, 'name' => 'dessert', 'url_name' => 'desert' },
{ 'content' => undef, 'name' => 'drink', 'url_name' => 'drink' }
];
要不我怎麼能打印所有url_name
哈希值的陣列中(主菜,沙漠,飲料)不知道大小?
哪一行是? – perreal
我的錯誤...完美的工作,節省了我幾個小時 – mamesaye