Previous PageNext Page

8.4.60 Right Function

Returns a specified number of characters from the right side of a string.
 

Syntax

Right(string, length)

Arguments

string
A string expression from which the rightmost characters are returned. If string contains Null, Null is returned.
length
A 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

The RightB function is used with byte data contained in a string. Instead of specifying the number of characters to return, length specifies the number of bytes.


Copyright © 2000 Chili!Soft

Previous PageTop Of PageNext Page