REPLICATE
Deprecated version
This document refers to a deprecated version of the RQL programming language.
Please go here for documentation related to the latest supported version.
Copy a string N times.
Syntax
REPLICATE(<string>, <int>)
Example
replicate("x", 4) // "xxxx"
replicate("abc,", 2) // "abc,abc,"