String

Definition:

String(length, char)

 

Description:

Return a string containing a specified character repeated a specified number of times.

 

Platforms:

All

 

Parameters:

length - required

Number of times to repeat the character specified in the char parameter.

 

char - required

String containing the character to be repeated.

 

Returns:

String containing the requested characters.