Member of the string class.
c = base2dec(a, b)
Converts a base b number represented by a string to a decimal number.
| Name | Description |
| a | Specifies a number in base b. The base b notation uses the following digits: 0, 1, ... , 9, A, B, ... , Z. a is a string. |
| b | Specifies the base of a. b can be any integer between 2 and 36. |
| Name | Description |
| c | Returns a decimal number equivalent to a. |
A = '1AD00X'
C = base2dec(A, 36)