Base conversion from any base to decimal.
This implements a general base conversion between decimal and an arbitrary base. The numeric characters 0-9 are used up to base ten, then the alpha characters A-Z up to base 37 and then beyond that are ASCII characters.
menu: veeos ==> Data ==> baseNtoDec
library: dataLib
o_baseNtoDec("A36",27) returns 7377
o_baseNtoDec("A36",16) returns 2614
This is implemented without loops so is very fast. Only positive integer values are supported.
VEE 7.0+, all platforms