Description
Returns a specified number of characters from the right side of a string.
Syntax
Right(string,length)
The Right function syntax has these named-argument parts:
Part |
Description |
string |
String expression from which the rightmost characters are returned. If string contains no valid data, Null is 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.
Note
Another function (RightB) is provided for use with the double-byte character sets (DBCS) used in some Asian locales. Instead of specifying the number of characters to return, length specifies the number of bytes. In areas where DBCS is not used, RightB behaves the same as Right.
See Also
Left Function, Len Function, Mid Function.
Example
This example uses the Right function to return a specified number of characters from the right side of a string.
AnyString = "Hello World" ' Define string. MyStr = Right(AnyString, 1) ' Returns "d". MyStr = Right(AnyString, 6) ' Returns " World". MyStr = Right(AnyString, 20) ' Returns "Hello World".