Rebol Programming/debase
USAGE:
editDEBASE value /base base-value
DESCRIPTION:
editConverts a string from a different base representation to binary.
DEBASE is a native value.
ARGUMENTS
edit- value -- The string to convert (Type: any-string)
REFINEMENTS
edit- /base -- Allow a selection of a different base for conversion
- base-value -- The base to convert from: 64, 16, or 2 (Type: any)
SOURCE CODE
editdebase: native[ {Converts a string from a different base representation to binary.} value [any-string!] "The string to convert" /base {Allow a selection of a different base for conversion} base-value "The base to convert from: 64, 16, or 2" ]