mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
394 B
Plaintext
9 lines
394 B
Plaintext
|
{
|
||
|
"function": "left",
|
||
|
"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'"}
|
||
|
]
|
||
|
}
|