Right()
Returns a substring from end of the input string, with a length specified by the count argument.
Right( string=string, count=number );
Returns: String
| Argument | Description |
|---|---|
|
string
string,
required
|
edit
A string or a variable that contains one. |
|
count
number,
required
|
edit
A non-zero integer. A positive value of n will return n characters from the end of the string. A negative value of n will return (length - n) characters from the end of the string. |
Examples
edit//simple Function
writeDump(right("I love lucee",5));//lucee
//Member function
str="Save trees, save life on the earth.";
writeDump(str.right(23));//save life on the earth.
See also
- Strings
- Left()
- string.right()
- Search Issue Tracker open_in_new
- Search Lucee Test Cases open_in_new (good for further, detailed examples)