Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.lib / org.gvsig.expressionevaluator.lib.impl / src / main / resources / org / gvsig / expressionevaluator / functions / en / REPLACE.json @ 44053

History | View | Annotate | Download (559 Bytes)

1
{
2
    "name": "REPLACE",
3
    "group": "String",
4
    "template": "REPLACE({{string}}, old_string, new_string)",
5
    "args": [
6
        "string - The original string",
7
        "old_string - The string to be replaced",
8
        "new_string - The new replacement string"
9
    ],
10
    "description": "Replaces all occurrences of a search string in a text with another string. If no replacement is specified, the search string is removed from the original string. If any parameter is null, the result is null. Example: REPLACE(NAME, ' ')",
11
    "returnType": "String"
12
}