Creates a string that contains a specified number of repetitions of the specified string.
repeatString(String, count)
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
String | string | Yes | ||
count | numeric | Yes |
getVal = repeatString("ColdFusion ", 3);
writeDump(getVal);