Help for this page

Select Code to Download


  1. or download this
    use Text::CSV;
    my $csv = Text::CSV->new();
    ...
      $csv->parse($_);
      print join("\t", $csv->fields()); 
    }