Help for this page

Select Code to Download


  1. or download this
    my $string = "ATCGC[ATCG]AAA[GA]";
    
    ...
    }
    
    print join("\n", @out) . "\n";
    
  2. or download this
    my $string = "ATCGC[ATCG]AAA[GA]";
    my @out = "";
    ...
    
    print join("\n", @out) . "\n";