|
| | |
|
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.
|
Example 1
|
|
Example 2
|
|
Example 3
|
Find("Kalipso", "K", 1)
Result = 1
|
|
Find("Kalipso", "p", 1)
Result = 5 |
|
Find("Kalipso", "G", 1)
Result = 0
|
|
|
|
|
|
Example 4 |
|
Example 5 |
|
Example 6 |
Find("Kalipso", "A", 1)
Result = 0 |
|
Find("Kalipso", "K", 2)
Result = 0 |
|
Find("Kalipso", "li", 1)
Result = 3 |
- This Function is case sensitive.
|
Updated: 3/29/2018 10:38 AM |
| |
|
|
|