RSet()
Syntax
Result$ = RSet(String$, Length [, Character$])Description
Pads a string to the right, and adds 'space' characters to fit the specified length. The optional 'Character$' parameter may be used to replace 'space' with another character. If the string is longer than the specified 'Length', it will be truncated to 'Length' characters, starting from the left side of the string.Example:
Debug RSet("R", 8) ; will display " R" Debug RSet("R", 8, "-") ; will display "-------R" Debug RSet("LongString", 4) ; will display "Long"
Supported OS
All