Rexx - copies() 方法
此方法将字符串复制n次。
语法
copies(string1,count)
参数
string1 − 源字符串。
count − 复制字符串的次数。
返回值
返回字符串,复制count次。
示例
/* 主程序 */ a = "Hello" say copies(a,3)
当我们运行上面的程序时,我们将得到以下结果。
输出
HelloHelloHello
此方法将字符串复制n次。
copies(string1,count)
string1 − 源字符串。
count − 复制字符串的次数。
返回字符串,复制count次。
/* 主程序 */ a = "Hello" say copies(a,3)
当我们运行上面的程序时,我们将得到以下结果。
HelloHelloHello
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。