Actions
$base » History » Revision 3
« Previous |
Revision 3/10
(diff)
| Next »
Per Amundsen, 08/05/2015 11:18 PM
Added in 1.9.0
$base(N,inbase,outbase,zeropad,precision)
Converts number N from inbase to outbase. The last two parameters are optional.
Parameters
N - The number to convert.
inbase - The base to convert from.
outbase - The base to convert to.
zeropad - Pad numbers to this length.
precision - TODO
Example
;Returns F //echo -ag $base(15,10,16) ;Returns 1.8 //echo -ag base(1.5,10,16) ;Returns 002 //echo -ag $base(2,10,16,3)
Updated by Per Amundsen over 9 years ago · 3 revisions