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 @ 44110

History | View | Annotate | Download (771 Bytes)

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