Help for this page

Select Code to Download


  1. or download this
    while (<STDIN>) {
        tr/\r\n//d;  # even better than chomp!
        print join( "\t", ( split /\t/ )[@ARGV] ), "\n";
    }
    
  2. or download this
    while(<STDIN>) {
        last if /\t/;
    }
    die "No tab-delimited fields found\n" unless ( /\t/ );