Hallo, On Sat, 01 Feb 2003, David Haller wrote:
On Fri, 31 Jan 2003, Sven Wahl wrote:
Ich fand den Begriff anfangs auch ziemlich verwirrend. Ich nahm folgendes an:
ASCII-Text: zum Beispiel dieser
"binaerer Text": 1101001101000000001 ...usw.
Ahso. Folgendes sollte machen was du willst.
==== liest nur von der Standardeingabe ==== #!/usr/bin/perl -nw use strict; chomp; my @l=split(""); foreach(@l) { print unpack('B*', pack 'A*', $_), " "; } END { print "\n"; } =====
Gegenrichtung: ==== #!/usr/bin/perl -nw use strict; chomp; my @l=split(" "); foreach(@l) { print unpack("a*", pack("B*", $_)); } END { print "\n"; } ==== -dnh -- Thank you so much. This brought back the MCSE module "Networking with MS-TCP/IP". Also affectionately known as "Rebooting Windows NT". My god that sucked planets through buckytubes. -- Arthur van der Harg in asr