{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}

ReplicateString

Creates a string containing multiple copies of the original, all one after the other.

Usage:

ReplicateString( x,y )

Parameters:

x The InputString that is to be multiplied
y The number of times to replicate the string

Returns:

String

Examples:

Replicate("ad",5)  // Returns "adadadadad"
Replicate("om",5)  // Returns "omomomomom"