Thread pack mal wieder
(3 answers)
Opened by mark05 at 2011-06-07 14:23
Ich würde es so machen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/perl use strict; use warnings; use Math::BigInt; my $data=pack('LL',0,12345678); my $str=unpack('H16',$data); my $c = Math::BigInt->from_hex($str); print "$c\n"; Wobei ich nicht weiß, ob damit die Kodierung noch stimmt. Last edited: 2011-06-07 16:15:07 +0200 (CEST) |