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 / LEFT.json @ 44053

History | View | Annotate | Download (396 Bytes)

1
{
2
    "name": "LEFT",
3
    "group": "String",
4
    "template": "LEFT({{string}}, len)",
5
    "args": [
6
        "string - The string to extract from",
7
        "len - Number of characters to extract. If the number exceeds the number of characters in string, it returns string"
8
    ],
9
    "description": "Returns the leftmost number of characters. Example: LEFT(NAME, 3)",
10
    "returnType": "String"
11
}