Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^3: ActivePerl on Win32 storing integers as strings?

by BrowserUk (Patriarch)
on Feb 14, 2012 at 05:17 UTC ( [id://953615]=note: print w/replies, xml ) Need Help??


in reply to Re^2: ActivePerl on Win32 storing integers as strings?
in thread ActivePerl on Win32 storing integers as strings?

You're almost there.

As you say, unpack takes a string as its argument. If you supply an integer, then Perl quietly converts it to a (human readable) string for you, just as it does when do print 0; It 'ascii-ises' the number. In C terms, Perl does an itoa() on it.

Conversely, when you pack the number, the string returned contains the machine readable, binary representation embedded within a string. In C terms, it is like doing:

int i = 0; printf( "%s", (char*)&i );

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?

Replies are listed 'Best First'.
Re^4: ActivePerl on Win32 storing integers as strings?
by LonelyPilgrim (Beadle) on Feb 14, 2012 at 05:59 UTC
    Thanks a lot; I think I've got it.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-04-25 12:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found