BaseConversion
not ratedConverts a number of one base to another base. It's fairly optimized although there may be faster methods.
Parameters:
string input - This is the number which you want converted to another base.
integer inputBase - This is the base of input
integer outputBase - This is the base you want to convert it to.
The bases cannot be longer than the length of charMap, but you can add more characters to it if you want.
If an error occoured, it will return a string telling what went wrong.
Empty strings and null strings return 0.
Parameters:
string input - This is the number which you want converted to another base.
integer inputBase - This is the base of input
integer outputBase - This is the base you want to convert it to.
The bases cannot be longer than the length of charMap, but you can add more characters to it if you want.
If an error occoured, it will return a string telling what went wrong.
Empty strings and null strings return 0.