Help for this page

Select Code to Download


  1. or download this
    #ref($docoded_json->{strarry} confirms array.  Store in array for easi
    +er processing:
    
    my @jsonarray = $decoded_json->{strarray};
    
  2. or download this
    use strict;
    use warnings;
    ...
    
    --output:--
    ARRAY
    
  3. or download this
    my @jsonarray = $decoded_json->{strarray};
    
  4. or download this
    my @jsonarray = $aref;
    
  5. or download this
    @{ $jsonarray[0] }
    
  6. or download this
    
    my @jsonarray = $decoded_json->{strarray};
    
  7. or download this
    
    my @jsonarray = @{ $decoded_json->{strarray} };