Thread String mit Sequenz unterteilen: (war:Keine Ahnung wie ich das nennen...) (3 answers)
Opened by Gast at 2007-06-17 02:01

RPerl
 2007-06-17 11:46
#77576 #77576
User since
2006-11-26
384 Artikel
BenutzerIn

user image
Vielleicht bekommst du auch mit subtr()
was gebacken

Beispiel:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
#!/usr/bin/perl

use warnings;
use strict;

my $string = 'acacagagatcgctagatcgatcgatcgat';

print substr($string, 0, 3); #aca
print substr($string, 3, 3); #cag
\n\n

<!--EDIT|RPerl|1182066806-->

View full thread String mit Sequenz unterteilen: (war:Keine Ahnung wie ich das nennen...)