LSet$ Function

Returns the specified string with trailing spaces appended up to the specified length.

Syntax
LSet$ (string, length)

Parameters

string
Specify a string expression.
length
Integer expression for the total length of the string returned.

Return Values
Specified string with trailing spaces appended.

See Also
RSet$, Space$

LSet$ Function Example

temp$ = "123"
temp$ = LSet$(temp$, 10)  ' temp$ = "123       "