Right aligns a string within a string variable.
RSet stringvar = string
The RSet statement syntax has these parts:
Part |
Description |
stringvar |
Name of string variable. |
string |
String expression to be right-aligned within stringvar. |
RSet replaces any leftover characters in stringvar with spaces, back to its beginning.
RSet can’t be used with user-defined types.
LSet Statement.
This example uses the RSet statement to right align a string within a string variable.
MyString = "0123456789" ' Initialize string.MyString = "Right->" ' MyString contains " Right->".