This Function returns a <string>, composed by the Length chars at right of the Source string.
Parameters
Source string <string> |
|
String from where the value will be retrieved. |
|
|
Length <numeric> |
|
Length of the left part of Source string to extract. |
|
|
Example 1
|
|
Example 2
|
Right("Everyone enjoys Kalipso.", 8)
Result = Kalipso.
|
|
Right("Everyone enjoys Kalipso.", 24)
Result = Everyone enjoys Kalipso. |
- If you specify a Length higher than the length of Source String, the returned value will be the entire Source String.
|
Updated: 3/21/2018 4:26 PM |