Help for this page

Select Code to Download


  1. or download this
    open (INPUT, "<", "input.txt");
    while (<INPUT>){
       chomp(my $record = $_);
       print join ",", (split /\t/, $record);
    }