Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
    open my $fh, '>', 'data.json' or die $!;
    print $fh $json;
    
  2. or download this
    {"second_hash":{"work":"office","family":"home"},"first_hash":{"Vegeta
    +ble":"tomato","fruit":"banana"}}
    
  3. or download this
    use warnings;
    use strict;
    ...
    my $data = decode_json $json;
    
    print Dumper $data->{$want};
    
  4. or download this
    $ perl fetch_hash.pl first_hash
    
    ...
              'work' => 'office',
              'family' => 'home'
            };