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
- Specify an integer or expression indicating the length of the returned string.
Return Values
Specified string with trailing spaces appended.
See Also
RSet$, Space$
Lset$$ Function Usage Example
temp$ = "123"
temp$ = LSet$(temp$, 10) ' temp$ = "123 "