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 / INSTR.json @ 44032

History | View | Annotate | Download (704 Bytes)

1
{
2
    "name": "INSTR",
3
    "group": "String",
4
    "template": "INSTR({{string}}, searchString, startInt)",
5
    "description": [
6
      "Returns the location of a search string in a string.",
7
      "If a start position is used, the characters before it are ignored.",
8
      "If position is negative, the rightmost location is returned.",
9
      "0 is returned if the search string is not found.",
10
      "Please note this function is case sensitive, even if the parameters are not.\n",
11
      "Example:\n",
12
      "INSTR(EMAIL,'@')"
13
    ],
14
    "args": [
15
          "string",
16
          "searchString"
17
          "startInt - Optional. Start position to be used for search"
18
    ],    
19
    "returnType": "Integer"
20
}