Help for this page

Select Code to Download


  1. or download this
    if ($current_line[0] eq $key) {
                  if ($current_line[1] == $position1) {
    ...
                    }
                  }
               }
    
  2. or download this
    if (   $current_line[0] eq $key 
        && $current_line[1] == $position1
    ...
    {
        print join ("\t", @current_line[0..3], "***", $key, $position1), "
    +\n";
    }