Clib.strstri()
syntax: |
Clib.strstri(srcStr, findStr) |
where: |
srcStr - a string to search.
findStr - a string to find.
|
return: |
string - beginning in srcStr with the first character in findStr that was found, else null.
|
description: |
This method searches srcStr, starting at srcStr[0], for the first occurrence of findStr. The search is case-insensitive. The method returns a variable indicating the beginning of the first occurrence of findStr in srcStr, else it returns null if findStr is not found in srcStr.
|
see: |
|