Alex d7ffe0b7ec
DelazJ bonification
Co-authored-by: Harrissou Sant-anna <delazj@gmail.com>
2022-01-11 11:17:49 -05:00

19 lines
541 B
Plaintext

{
"name": "left",
"type": "function",
"groups": ["String"],
"description": "Returns a substring that contains the <i>n</i> leftmost characters of the string.",
"arguments": [{
"arg": "string",
"description": "a string"
}, {
"arg": "length",
"description": "integer. The number of characters from the left of the string to return."
}],
"examples": [{
"expression": "left('Hello World',5)",
"returns": "'Hello'"
}],
"tags": ["first", "substring", "leftmost", "characters", "contains", "extracts"]
}