string_repeat


描述

此函数只返回重复给定次数的相同字符串。


语法:

string_repeat(str, count);

参数 描述
str 要重复的字符串。
count 重复字符串的次数。


返回:

String(字符串)


例如:

str1 = "Hello World";
str2 = string_repeat(str1, 3);

以上代码将设置 str2 为 “Hello WorldHello WorldHello World”。