Creates a string that contains a specified number of repetitions of the specified string.
A string.
RepeatString(string, count)
<cfscript>
myStr="Lorem Ipsum";
WriteOutput(RepeatString(myStr,5));
</cfscript>
Sign in to your account