
sql:repeat( $str as item(), $n as xs:double ) as xs: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"