|
: 26 : 26 : 0 |
Currently there is no way to easly get a hexidecimal, octal or binary representation of a number in @formula.
I propose a new format-string be added to @Text such that it would be possible to specify the radix required for the conversion of a number to a string. The format string would be "RXX" where R stands for radix and XX is the base.
Examples:
@Text(255, "R16") would give "FF"
@Text(888, "R8") would give "1570"
@Text(42, "R2") could give "101010"
|