RSet$ Function

Returns a string of the specified length by adding single-byte spaces at the beginning of the string.

Syntax
RSet$ (string, length)

Parameters

string
Specify a string expression.
length
Specify an integer or expression indicating the length of the returned string.

Return Values
Returns a string with leading single-byte spaces appended.

See Also
LSet$, Space$

RSet$ Function Example

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