StrFill

Creates a string filled with a series of characters.

Syntax:

StrFill (filler, length)

Parameters:

(s) filler a string to be repeated to create the return string. If the filler string is null, spaces will be used instead.

(i) length the length of the desired string.

Returns:

(s) character string.

 

Use this function to create a string consisting of multiple copies of the filler string concatenated together.

Example:


Message("My Stars", StrFill("*", 30))

which produces:

will-z3_shg.gif

See Also:

StrCat, StrFix, StrInsert, StrLen, StrOverlay, StrTrim