Thread Strings spliten? (6 answers)
Opened by Free Faq at 2004-08-21 21:08

coax
 2004-08-22 00:55
#49555 #49555
User since
2003-08-11
457 Artikel
BenutzerIn
[default_avatar]
ist es das was du suchst ...?
Code: (dl )
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use warnings;

my $string = 'abcdefghijklmnopqrstuvwxzy0';

while($string =~ s/(...)//) {
   print "$1\n";
}


Grusz coax.
,,Das perlt aber heute wieder...'' -- Dittsche

View full thread Strings spliten?