Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    my $json = '{"foo":"bar", "biff":["baz","buzz"]}';
    
    print "\nData structure parsed from JSON:\n", Dumper(decode_json($json
    +));
    
  2. or download this
    Using JSON module 'JSON::XS'.
    
    ...
                          'buzz'
                        ]
            };
    
  3. or download this
    Using JSON module 'JSON::PP'.
    
  4. or download this
    Using JSON module 'JSON::Tiny'.