b2x >>-b2x--------------------------------------------------------->< Returns a string, in character format, that represents the receiving binary string converted to hexadecimal. The receiving string is a string of binary
( The returned string uses uppercase alphabetic characters for the values
If the receiving binary string is a null string,
[b2x] returns a null string.
If the number of binary digits in the receiving string is not a multiple of
four, up to three String class - b2x method "11000011"~b2x -> "C3" "10111"~b2x -> "17" "101"~b2x -> "5" "1 1111 0000"~b2x -> "1F0" You can combine [b2x] with the methods [x2d] and [x2c] to convert a binary number into other forms. String class - b2x method with x2d "10111"~b2x~x2d -> "23" /* decimal 23 */ |