Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: pack question

by btrott (Parson)
on Jul 05, 2001 at 19:41 UTC ( [id://94133]=note: print w/replies, xml ) Need Help??


in reply to pack question

"Printing the ASCII chars" is not really equivalent to "converting to hex". Which do you want? :)

If you want to print out 324789 as the binary representation of a long (in network order), for example, do this:

print pack "N", 324789;
Say instead that you want to print it out in hex; then you can do this:
print unpack "H*", pack "N", 324789;
Or you could use printf with the %x specifier.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://94133]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-24 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found