Help for this page

Select Code to Download


  1. or download this
    $csv ->getline ($fh);
    
  2. or download this
      my $header = $csv ->getline ($fh);
      print Dumper(\$header), "\n";
    
  3. or download this
    $VAR1 = \[
                '# de tienda',
    ...
                'ff',
                'location27'
              ];
    
  4. or download this
      open ($po_data, '<', $edi_file) or die "Could not open the file '$ed
    +i_file' $!\n";
      undef $/;
      @po_array = split (/\~/, <$po_data>);
    
  5. or download this
    local $/ = undef;