Lucee Object Methods Reference
Object Method String.right
Returns a substring from end of the input string, with a length specified by the count argument.
String.right(number count):string
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
Name | Type | Required | Description |
---|---|---|---|
count | number | Yes |
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. |