2015-06-11 12:02:27 +10:00
|
|
|
{
|
2015-09-20 17:12:43 +02:00
|
|
|
"name": "right",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["String"],
|
2015-06-11 12:02:27 +10:00
|
|
|
"description": "Returns a substring that contains the <i>n</i> rightmost characters of the string.",
|
2022-01-07 08:33:29 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "string",
|
|
|
|
"description": "a string"
|
|
|
|
}, {
|
|
|
|
"arg": "length",
|
|
|
|
"description": "integer. The number of characters from the right of the string to return."
|
|
|
|
}],
|
|
|
|
"examples": [{
|
|
|
|
"expression": "right('Hello World',5)",
|
|
|
|
"returns": "'World'"
|
|
|
|
}],
|
2022-04-21 11:24:43 +02:00
|
|
|
"tags": ["last", "end", "substring", "rightmost", "characters", "contains"]
|
2015-06-11 12:02:27 +10:00
|
|
|
}
|