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.
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.
Find("Kalipso", "K", 1)
Result = 1
Find("Kalipso", "p", 1)
Result = 5
Find("Kalipso", "G", 1)
Result = 0
Find("Kalipso", "A", 1)
Result = 0
Find("Kalipso", "K", 2)
Result = 0
Find("Kalipso", "li", 1)
Result = 3
This Function is case sensitive.