Help for this page

Select Code to Download


  1. or download this
    my $records_data = $ref->{'records'}->[0]->{'record'}->...
    
    # or shorter
    my $records_data = $ref->{'records'}[0]{'record'}...
    
  2. or download this
    $pseudohash = [ { key => 5 } ];
    
  3. or download this
    $pseudohash->{key} = 42;
    
  4. or download this
    $VAR1 = [
              {
    ...
              undef,
              42
            ];
    
  5. or download this
    my $data = { 'records' => [
                   {
    ...
                   },
                   ],
               };
    
  6. or download this
    my $records_data = $ref->{'records'}->{'record'}->{'recordData'}