Help for this page

Select Code to Download


  1. or download this
    my $str = "ATCGATCGAT";
    my @substr = qw(ATCG CGAT);
    
  2. or download this
    $id = -1;
    foreach (@substr)
    ...
       print "$id\n";
       $id += length($_);
    }