Rexx - 扩展函数 B2C

此函数将二进制值转换为字符串值。

语法

B2C(binstring) 

参数

  • binstring − 这是需要转换为字符串的二进制值。

返回值

输入的二进制值对应的字符串值。

示例

/* 主程序 */
options arexx_bifs 
say b2c('01100011')

当我们运行上面的程序时,我们将得到以下结果。

输出

c

❮ rexx_extended_functions.html