Hello Perl monks, I have below json data and i would like to print only preview_sandbox_1_link in my excel field. I would like to inform that i will have 1000 entries with different applinks key information.
[ { "visio": { "Launch": false, "hide": { "iOS": true, }, "appLinks": { "preview_sandbox_1_link": true } }, } ]
I have iterate above json data by below code and was able to to capture following "preview_sandbox_1_link": true but unable to print the key "preview_sandbox_1_link" Please check my below code let me know the reason i was not able to print the key value.
use strict; use warnings; use Win32::Process; use REST::Client; use JSON::Parse ':all'; use MIME::Base64; use Term::ReadKey; use Data::Dumper; use MIME::Lite; use Net::SMTP; use Spreadsheet::XLSX; use Spreadsheet::ParseXLSX; for my $i (0..$#responsetextall) { for my $j (0..$#{$responsetextall[$i]}) { $responseapplinks = $responsetextall[$i][$j]{visio{appLi +nks}}; $worksheet->write(0, 1, 'Visio-appLinks' , $my_format); $worksheet->write($r, 15, $responsetextall[$i][$j]{visio}{a +ppLinks}); } }
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |