Right(Source: String; Count: Integer): String;
Source. String.
Count. Number of characters from the right edge of string.
The Right method returns the specified number of characters from the right edge of string.
To get characters from the left edge of string, use the String.Left method.
After executing the example first four characters from the right edge of the Calculator string are displayed in the console window.
See also: