Thread JSON - Verarbeitung (6 answers)
Opened by chmod777 at 2020-02-04 14:00

Raubtier
 2020-02-04 15:20
#191271 #191271
User since
2012-05-04
1076 Artikel
BenutzerIn
[default_avatar]
1. Dein JSON ist ungültig. Viele Parser können ungültiges JSON nicht parsen. Es ist mindestens ein Komma zu viel da und eine } zu wenig.

2. Wo ist das Problem?

Code (perl): (dl )
1
2
3
4
5
6
use JSON::XS qw(decode_json);

$text = getMyDownloadedJson();

my $content = decode_json($text);
say $content->{'Body'}{'Data'}{'PAC'}{'Values'}{'1'};

View full thread JSON - Verarbeitung