Find
Kalipso - Form - Expressions - Functions - Functions Descriptions - String Functions - Find
This Function returns a <numeric>, which is the position of the String to search in the Source string, starting at Starting position.
Parameters
Source string <string> - String where the search will be performed.
String to search <string> - String to search for.
Starting position <string> - Position in Source string from where the search should start.
Examples
Example 1
Find("Kalipso", "K", 1) Result = 1
Example 2
Find("Kalipso", "p", 1) Result = 5
Example 3
Find("Kalipso", "G", 1) Result = 0
Example 4
Find("Kalipso", "A", 1) Result = 0
Example 5
Find("Kalipso", "K", 2) Result = 0
Example 6
Find("Kalipso", "li", 1) Result = 3
This Function is case sensitive.
Last updated