Rebol 编程/enbase
外观
< Rebol 编程
ENBASE value /base base-value
将字符串转换为不同的基数表示。
ENBASE 是一个原生值。
- value -- 要编码的字符串(类型:any-string)
- /base -- 允许选择不同的基数进行转换
- base-value -- 要转换到的基数:64、16 或 2(类型:any)
enbase: native[ {Converts a string to a different base representation.} value [any-string!] "The string to encode" /base {Allow a selection of a different base for conversion} base-value "The base to convert to: 64, 16, or 2" ]