Thread Hilfe zu Mustererkennung + if
(27 answers)
Opened by Anonymus at 2013-06-13 11:02 2013-06-14T15:00:57 Anonymus Codeschnippsel: Code (perl): (dl
)
1 2 3 4 5 6 my $big_dna = 'TGAACCCGGGATTTGAGATTCCGGGGTTAAAAACGATTGAACCCGGGATTTGAGATTCCGGGGTTAAAAA'; my $cutter = 'GATT'; $big_dna =~ s/$cutter/#/g; my (@cutted_parts) = split /#/,$big_dna; |