How can I convert the binary string $x_bin="0001001100101" to its numeric value $x_num=613 in Perl?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
|||||||||||
|
|
Actually, I posted this for my reference and so I can point people to it when I'm asked. For reference, my preferred way is:
Quoting from oct EXPR
oct Interprets EXPR as an octal string and returns the
corresponding value. (If EXPR happens to start
off with "0x", interprets it as a hex string. If
EXPR starts off with "0b", it is interpreted as a
binary string. Leading whitespace is ignored in
all three cases.)
|
|||||||||
|
|
As usual, there's is also an excellent CPAN module that should be mentioned here: Bit::Vector. The transformation would look something like this:
The binary strings can be of almost any length and you can do other neat stuff like bit-shifting, etc. |
||||
|
|
|
Actually you can just stick '0b' on the front and it's treated as a binary number.
But this only works for a bareword. |
|||||
|