Thread Hex zu Float (2 answers)
Opened by Gast at 2008-05-27 23:34

Taulmarill
 2008-05-28 17:47
#110407 #110407
User since
2004-02-19
1750 Artikel
BenutzerIn

user image
also wenn ich folgendes Programm auf meinem AMD Opteron absetzte:
Code: (dl )
1
2
3
4
5
6
my $hex = "5b 20 5a 2d 42 2d 46 20 5d 20 7e 20 4e 3a 6f 3a 52 3a 69"
. "3a 53 20 7e 00 00 00 00 00 7c d6 ab 42";
$hex =~ tr/ //d;

print join ", ", unpack "Z*Lf", pack "H*", $hex;
print "\n";

bekomme ich da folgendes raus:
[ Z-B-F ] ~ N:o:R:i:S ~, 0, 85.9189147949219

Das ist auch wahrscheinlich das was du haben willst. Bedenke nur, dass die meisten Optionen von pack() nicht unbedingt portabel sind. Vor allem das Float sieht auf anderen Maschinen gerne anders aus. Auf meiner SPARC gibt er mir da z.b. eine 8.91700039061923e+36 zurück.
$_=unpack"B*",~pack"H*",$_ and y&1|0& |#&&print"$_\n"for@.=qw BFA2F7C39139F45F78
0A28104594444504400 0A2F107D54447DE7800 0A2110453444450500 73CF1045138445F4800 0
F3EF2044E3D17DE 8A08A0451412411 F3CF207DF41C79E 820A20451412414 83E93C4513D17D2B

View full thread Hex zu Float