in reply to Escape $ in JSON::XS decoded
#!/usr/bin/perl use strict; use warnings; my $decoded_json = { 'version' => '1.0', 'feed' => { 'xmlns' => 'http://www.w3.org/2005/Atom', 'updated' => { '$t' => '2020-10-16T19:55:33.294Z' }, 'gs$rowCount' => { '$t' => '1000' }}}; print $decoded_json->{feed}->{updated}->{'$t'}; # 2020-10-16T19:55:33 +.294Z
How should the code return 2019-07-19 when the structure contains 2020-10-16? Maybe the problems happens in the code you didn't show - how do you create the JSON?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Escape $ in JSON::XS decoded
by johnfl68 (Scribe) on Oct 16, 2020 at 20:58 UTC | |
by choroba (Cardinal) on Oct 16, 2020 at 21:03 UTC | |
by haukex (Archbishop) on Oct 16, 2020 at 21:03 UTC |