sql.repeat

sql.repeat(
   str as Item,
   n as Number
) as String

Summary

Returns a string that concatenates the first argument as many times as specified by the second argument.

Parameters
str The string to duplicate. If the value is not a string, its string value will be used.
n The number of times to repeat the string.

Example

  sql.repeat("ab",2)
  => "abab"
Powered by MarkLogic Server | Terms of Use | Privacy Policy