string | (String) Text string from which the rightmost characters are returned. |
---|---|
length | (Integer) Numeric expression specifies how many characters to return.
If 0, then a empty string ("") is returned. If greater than or equal to the string length, then the entire string is returned. |
Dim sAnyString, sStr
sAnyString = "Hello World"
sStr = Right(sAnyString, 1)
' Returns "d"
sStr = Right(sAnyString, 6)
' Returns " World"
sStr = Right(sAnyString, 20)
' Returns "Hello World"