JSONデータの読み込み
JSONモジュールで簡単にできます。
use strict; use warnings; use JSON; my $json_data = '[{"name":"foo","id":"100"},{"name":"bar","id":"110"},{"name":"baz","id":"120"}]'; my $items = JSON->new()->decode($json_data); foreach my $item (@$items) { printf "%s,%s\n", $item->{name}, $item->{id}; }