Thread Aufgabe für die Funktionen pack / unpack gesucht
(14 answers)
Opened by gast at 2009-11-27 17:09
Ich weiß nicht, ob das so funktioniert:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/perl use warnings; use strict; my $file = '/foo/bar'; open my $fh, '<', $file or die $!; local $/; my $content = <$fh>; close $fh or die $! my $ascii = pack 'u', $content; |