Help for this page

Select Code to Download


  1. or download this
    malformed JSON string, neither tag, array, object, number, string or a
    +tom, at character offset 0 (before "\x{feff}[{"registered...")
    
  2. or download this
    use strict;
    use warnings;
    ...
    Using this JSON file as a test...
    <code>
    [{"registered":true,"insolvent":false,"administration":true,"test":fal
    +se}]
    
  3. or download this
    $VAR1 = [
              {
    ...
                'insolvent' => $VAR1->[0]{'test'}
              }
            ];
    
  4. or download this
    foreach my $key(keys %{@{$json}[0]}) {
        print "$key - ";
        print ${@{$json}[0]}{$key};
        print "\n";
    }