Thread LONG nach bitstring: pack und unpack (14 answers)
Opened by esskar at 2004-05-12 23:22

ronald
 2004-05-13 14:20
#14923 #14923
User since
2003-08-15
76 Artikel
BenutzerIn
[default_avatar]
wenn's nur noch darum geht, das Ergebnis anders auszugeben:

Code: (dl )
1
2
3
4
5
6
7
8
# zeichenweise
my $x = "abCDe";
my $y = join('', reverse split //, $x);
print "zeichenweise: $y\n";

# blockweise
$y = join('', reverse split /(..)/, $x); # verbesserungsfähig
print "blockweise: $y\n";

View full thread LONG nach bitstring: pack und unpack