string.repeatString()

Creates a string that contains a specified number of repetitions of the specified string.

string.repeatString( count=number )

Returns: String

Argument Description
count
number, required

The number of times to repeat the string.

Examples

str="I will Do! ";
	writeDump(str.repeatString(3));

See also