Help for this page

Select Code to Download


  1. or download this
    my $concatstring = join "\t", $string1, $string2, $string3;
  2. or download this
    my $concatstring =
        join "\t",
        map length() < 8 ? "$_\t" : $_,
        $string1, $string2, $string3;