Help for this page

Select Code to Download


  1. or download this
    my $columns = 6; # or 10 or 14
    local $/ = ',';
    ...
        }
    }
    print @fields;
    
  2. or download this
    use Text::CSV;
    
    ...
        my $status = $csv->combine( @line_fields );
        print $csv->string();
    }