
sql.repeat( str as Item, n as Number ) as String
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. |
sql.repeat("ab",2)
=> "abab"
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.