Help for this page

Select Code to Download


  1. or download this
    # Read file from path
    my @rows; 
    my $csv = Text::CSV->new ( { binary => 1, sep_char => "\t" } )
    ...
    close $fh;
    
    print Dumper \@rows;
    
  2. or download this
    $VAR1 = [
              {
                'ID' => '4564',
    ...
                'Name' => 'Mengano'
              }
           ];