Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
Just another Perl shrine
 
PerlMonks  

Re: decimal to binary

by btrott (Parson)
on May 31, 2000 at 04:36 UTC ( [id://15579]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to decimal to binary

Here's a bintodec function:
sub bintodec { unpack("N", pack("B32", substr("0" x 32 . shift, -32))); }
Taken from the pack manpage.

And this seems to work for a dectobin, although there's probably a faster way w/o using join:

sub dectobin { join '', unpack "B32", pack "N", shift; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://15579]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.