Right Function
Returns a specified number of characters from the right side of a string.
Syntax
Right(string, length)
Arguments:
- String: String expression from which the rightmost characters are returned.
- Length: Numeric expression indicating how many characters to return. If 0, a zero-length string is returned. If greater than or equal to the number of characters in string, the entire string is returned.
Remarks
To determine the number of characters in string, use the Len
function.
The following example uses the Right
function to return a specified
number of characters from the right side of a string:
Example:
Dim AnyString, MyStr
AnyString = "Hello World" ' Define string.
MyStr = Right(AnyString, 1)
' Output: "d".
MyStr = Right(AnyString, 6)
' Output: " World".
MyStr = Right(AnyString, 20)
' Output: "Hello World".
MyStr = Right(AnyString, 3)
' Output: "rld"
MyStr = Right(AnyString, 0)
' Output: ("")