Rexx-证明合理


该方法用于根据长度值添加对齐或修剪字符串的值。

句法

justify(string,length)

参数

  • String - 需要进行调整的字符串值。

  • 长度- 理由的值。

返回值

返回对齐的字符串值。

例子

/* Main program */ 
options arexx_bifs 
say justify('This is a tutorial',14) 

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

输出

This is a tuto 
rexx_regina.htm