I have ABC123EFFF, I want to have 01010101010001010101.
How?
|
2
|
|||
|
|
|
|
|
||||||||||||||||||
|
|
|
Read Return the binary data represented by the hexadecimal string specified as the parameter. |
||||||
|
|
|
Another way:
|
||
|
|
|
hex --> decimal then decimal --> binary
|
||
|
|
|
Replace each hex digit with the corresponding 4 binary digits:
|
||||
|
|
|
Here's a fairly raw way to do it using bit fiddling to generate the binary strings. The key bit to understand is:
Which will generate either a 0 or 1 if the i'th bit of n is set.
|
||
|
|
|
|
|
||
|
|