
Jasmine
Administrator
Jan 19, 2001, 2:33 PM
Post #1 of 1
(2973 views)
|
How do I convert bits into ints?
|
Can't Post
|
|
(From the Perl FAQ) How do I convert bits into ints? To turn a string of 1s and 0s like 10110110 into a scalar containing its binary value, use the pack() function (documented in pack): $decimal = pack('B8', '10110110'); Here's an example of going the other way: $binary_string = join('', unpack('B*', "\x29"));
|