Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
540 B
Plaintext
Raw Permalink Normal View History

{
"name": "right",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["String"],
"description": "Returns a substring that contains the <i>n</i> rightmost characters of the string.",
"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'"
}],
"tags": ["last", "end", "substring", "rightmost", "characters", "contains"]
}