-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[expression] further improve replace() to support a map argument
- Loading branch information
Showing
3 changed files
with
65 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,20 @@ | ||
{ | ||
"name": "replace", | ||
"type": "function", | ||
"description": "Returns a string with the supplied string or array of strings replaced by a string or an array of strings.", | ||
"arguments": [ {"arg":"string","description":"the input string"}, | ||
{"arg":"before","description":"the string or array of strings to replace"}, | ||
{"arg":"after","description":"the string or array of strings to use as a replacement"}], | ||
"examples": [ { "expression":"replace('QGIS SHOULD ROCK','SHOULD','DOES')", "returns":"'QGIS DOES ROCK'"}, | ||
{ "expression":"replace('QGIS ABC',array('A','B','C'),array('X','Y','Z'))", "returns":"'QGIS XYZ'"}, | ||
{ "expression":"replace('QGIS',array('Q','S'),'')", "returns":"'GI'"} | ||
] | ||
"description": "Returns a string with the supplied string, array, or map of strings replaced.", | ||
"variants": [ | ||
{ "variant": "String & array variant", | ||
"variant_description": "Returns a string with the supplied string or array of strings replaced by a string or an array of strings.", | ||
"arguments": [ {"arg":"string","description":"the input string"}, | ||
{"arg":"before","description":"the string or array of strings to replace"}, | ||
{"arg":"after","description":"the string or array of strings to use as a replacement"}], | ||
"examples": [ { "expression":"replace('QGIS SHOULD ROCK','SHOULD','DOES')", "returns":"'QGIS DOES ROCK'"}, | ||
{ "expression":"replace('QGIS ABC',array('A','B','C'),array('X','Y','Z'))", "returns":"'QGIS XYZ'"}, | ||
{ "expression":"replace('QGIS',array('Q','S'),'')", "returns":"'GI'"} ] }, | ||
{ "variant": "Map variant", | ||
"variant_description": "Returns a string with the supplied map keys replaced by paired values.", | ||
"arguments": [ {"arg":"string","description":"the input string"}, | ||
{"arg":"map","description":"the map containing keys and values"} ], | ||
"examples": [ { "expression":"replace('APP SHOULD ROCK',map('APP','QGIS','SHOULD','DOES'))", "returns":"'QGIS DOES ROCK'"} ] | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters