mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
10 lines
416 B
Plaintext
10 lines
416 B
Plaintext
|
{
|
||
|
"function": "substr",
|
||
|
"description": "Returns a part of a string.",
|
||
|
"arguments": [ {"arg":"input_string","description":"the full input string"},
|
||
|
{"arg":"startpos","description":"integer representing start position to extract from"},
|
||
|
{"arg":"length","description":"integer representing length of string to extract"}
|
||
|
],
|
||
|
"examples": [ { "expression":"substr('HELLO WORLD',3,5)", "returns":"'LLO W'"}]
|
||
|
}
|