StrRight
- Last UpdatedJul 18, 2023
- 1 minute read
Gets the rightmost characters from a string.
Syntax
StrRight(String, N)
String:
The source string.
N:
The number of characters to get from the source string.
Return Value
A string containing the rightmost N characters of String.
Related Functions
Example
Variable=StrRight("ABCDEF",2);
! Sets Variable to "EF".