RSet$ Function
Returns the specified string with leading spaces added up to the specified length.
Syntax
RSet$ (string, length)
Parameters
- string
- Specify a string expression.
- length
- Integer expression for the total length of the string returned.
Return Values
Specified string with leading spaces appended.
See Also
LSet$, Space$
RSet$ Function Example
temp$ = "123"
temp$ = RSet$(temp$, 10) ' temp$ = " 123"