convertbase()
From Wiki077
float convertbase(float number)
Converts a number from one base to another.
Examples
convertbase("255", 10, 16) = "FF"
convertbase("111", 2, 10) = "7"
convertbase("1F", 16, 10) = "31"
convertbase("10", 16, 2) = "10000"
