Rexx - left() 方法

此方法从字符串左侧返回一定数量的字符。

语法

left(str,count) 

参数

  • str − 源字符串。

  • count − 从字符串左侧返回的字符数。

返回值

此方法从字符串左侧返回一定数量的字符。

示例

/* 主程序 */
a = "Hello World" 
say left(a,5) 

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

输出

Hello 

❮ rexx_strings.html