Help for this page

Select Code to Download


  1. or download this
    use Text::CSV;
    
    ...
    while (my $row = $csv->getline ($fh)) {
        say "The second field is ", $row->[1];
        }
    
  2. or download this
    use Text::CSV;
    
    ...
            my @subfields = $parse->fields;
            }
        }