in reply to Re^2: Parsing the data returned from the companies house API
in thread Parsing the data returned from the companies house API
my $decodedJSON = decode_json($curl) or die "this is not JSON\n"; if (is_hashref($decodedJSON)) { if (exists $decodedJSON->{items}) { for my $item (@{ $decodedJSON->{items} }) { .... } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Parsing the data returned from the companies house API
by irtuk (Novice) on Oct 17, 2022 at 15:55 UTC | |
by choroba (Cardinal) on Oct 17, 2022 at 17:15 UTC |