Creates a string containing multiple copies of the original, all one after the other.
ReplicateString( x,y )
x | The InputString that is to be multiplied |
---|---|
y | The number of times to replicate the string |
String
Replicate("ad",5) // Returns "adadadadad" Replicate("om",5) // Returns "omomomomom"