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