I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?
···
--
Posted via http://www.ruby-forum.com/.
I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?
--
Posted via http://www.ruby-forum.com/.
number.to_s(2)
2008/5/30, Bob Sanders <small.business.strategy@gmail.com>:
I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?--
Posted via http://www.ruby-forum.com/\.
I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?
"beef".to_i(16).to_s(2)
=> "1011111011101111"
Regards,
Bill
From: "Bob Sanders" <small.business.strategy@gmail.com>
Bob Sanders wrote:
I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?
From Converting to hex (Newbie) - Ruby - Tek-Tips
> You have to convert items using methods such as String#to_i(base=10)
> and Fixnum#to_s(base=10). These would be for decimal values. Change
> to (base=16) for hexadecimal values, (base=2) for binary values,
etc.
--
Posted via http://www.ruby-forum.com/\.
Ryan Lewis wrote:
Bob Sanders wrote:
I can't find a clue how to convert a hexadecimal number to a binary
number. Anyone know?From Converting to hex (Newbie) - Ruby - Tek-Tips
> You have to convert items using methods such as String#to_i(base=10)
> and Fixnum#to_s(base=10). These would be for decimal values. Change
> to (base=16) for hexadecimal values, (base=2) for binary values,
etc.
Big thanks for the quick reply, Ryan!
--
Posted via http://www.ruby-forum.com/\.
Bob Sanders wrote:
Big thanks for the quick reply, Ryan!
NP, I just happened to needed this same info like two days ago
--
Posted via http://www.ruby-forum.com/\.