Right justifies a string in a string buffer
Syntax
Usage
RSet dst, src
Parameters
Description
RSet right justifies text into the string buffer dst, filling the right part of the string with src and the left part with spaces.
Example
Dim buffer As String
buffer = Space(10)
RSet buffer, "91.5"
Print "-[" & buffer & "]-"
Differences from QB
- In QBasic the syntax was RSet dst = src
See also