Help for this page

Select Code to Download


  1. or download this
    my $input_str1 = "TG[CCC]CC[TTT]";
    
    ...
    # Similarly 
    my $input_str2 = "TG[CCC][TTT]";
    my $rep2 = "TG[CCCTTT]";
    
  2. or download this
    my $input_str3 = "TG[CCAAATTT]";
    
    # Desired result is this:
    
    my $rep3 = "TG[CCAAATTT]";
    
  3. or download this
    $str =~ s/\][ATCG]+\[/N/;