Repeatstring()

Returns a new string, made up of the string repeated the number of times specified

Usage

STRING = Repeatstring( string, repeatcount )
Argument Summary
string string
repeatcount repeatcount

Calling

Supports named-parameter calling allowing you to use the function like:

Repeatstring(
   string=?, 
   repeatcount=?
);

Supports passing parameters as a structure using ArgumentCollection:

Repeatstring( ArgumentCollection={
   string : ?, 
   repeatcount : ?
} );