$base » History » Revision 5
Revision 4 (Per Amundsen, 08/05/2015 11:21 PM) → Revision 5/10 (Per Amundsen, 08/09/2015 06:04 AM)
_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 - If length is higher than zeropad, pad numbers with zeroes to this zeropad length. precision - TODO *Example* <pre> ; Returns ;Returns F //echo -ag $base(15,10,16) ; Returns ;Returns 1.8 //echo -ag base(1.5,10,16) ; Returns ;Returns 002 //echo -ag $base(2,10,16,3) </pre>