Views:

Product: LABELVIEW, CODESOFT

Version: All Versions

 

 

find(<<string>>, <<Key>>, <<start>>): Returns the position of the first occurrence of the key argument in the string argument. The search in the string argument starts from the position returned by the start argument (start>=1). The function resets to zero if no occurrence of the key argument is found. The function distinguishes between upper and lower case letters.

Example:
find("Peter McPeepert", "P", 1) = 1
find("Peter McPeepert", "p", 1) = 12