Product: LABELVIEW, CODESOFT
Version: All Versions
|
search(<string>, <key start>): Gives the position of the first occurrence of the key argument in the string argument. The search starts from the position defined by the start argument (start>=1). The function resets to zero if no occurrence of the key argument is found.
Example:
search("Purchase order","order",1) = 10
search("Purchase order","c",1) = 4
|