Help for this page

Select Code to Download


  1. or download this
    my $column_separator = ",";
    
  2. or download this
    my $column_separator = qr/,/;
    
  3. or download this
    my $column_number = "3";
    
  4. or download this
    open(FILE,"<","$file");
    while (<FILE>) {
    ...
     print $columns[$column_number],"\n";
    }
    close FILE;