REPT

Syntax:

REPT(text, number)

Repeats the text string the given number times.

Example:

REPT("yo", 2)

returns the text string "yoyo".

Revisions:

Starting with 2.00, this function will accept a repeat count of zero, returning an empty string.