Whatever message this page gives is out now! Go check it out!
RepeatString(string, count)Parameter | Description |
string | A string or a variable that contains one. |
count | Number of repeats. |
<cfscript>
myStr="Lorem Ipsum";
WriteOutput(RepeatString(myStr,5));
</cfscript>