string.repeatString()
Creates a string that contains a specified number of repetitions of the specified string.
string.repeatString( count=number )
Returns: String
Examples
str="I will Do! ";
writeDump(str.repeatString(3));
Creates a string that contains a specified number of repetitions of the specified string.
string.repeatString( count=number )
Returns: String
str="I will Do! ";
writeDump(str.repeatString(3));