Rexx - 复制字符串


此方法将字符串复制 n次。

句法

copies(string1,count)

参数

  • string1 - 源字符串。

  • count - 复制字符串的次数。

返回值

返回已复制 count 次的字符串。

例子

/* Main program */ 
a = "Hello" 
say copies(a,3)

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

输出

HelloHelloHello 
rexx_strings.htm