Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        chomp;
    ...
            print(join("\t", @fields, $_), "\n");
        }
    }
    
  2. or download this
    while (<>) {
        (my $common, $_) = /^((?:[^\t]*\t){3})(.*)/;
    ...
            print("$common\t$_\n");
        }
    }