Help for this page

Select Code to Download


  1. or download this
    my $csv = Text::CSV_XS->new ({ binary => 1 });
    foreach my $line (@out) {
        my @f = $csv->parse ($line);
        @f > 10 and $f[9] = join ",", splice @f, 9, $#f;