3.2.18. COPIES(string,copies)

Returns a string with copies concatenated copies of string. Copies
must be a non-negative whole number. No extra space is added
between the copies.

     COPIES(‘Foo’, 3)    –>   ‘FooFooFoo’
     COPIES(‘*’, 16)     –>   ‘****************’
     COPIES(‘Bar ‘, 2)   –>   ‘Bar Bar ‘
     COPIES(‘’, 10000)   –>   ‘’



PREV NEXT