in reply to Re^4: Parsing Array of arrays from json file
in thread Parsing Array of arrays from json file
I can't test because I'm on mobile now.
Please note that this
my @records = $decoded_json[0];
Will create an array with just one entry, you may want try
Plus correct nesting levels.my @records = @{$decoded_json[0]};
I could help better if the dump and code was clearer...
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
|
|---|