STRIPOS
NAME
stripos - Finds the position of the first occurrence of a case-insensitive substring in a string.
SYNOPSIS
stripos(where,what,offset)
PARAMETERS
- where
- The element to search in.
- what
- The element we are looking for.
- offset
- If specified, the search will start this number of characters counted from the beginning of the string. If it is negative, the search will be performed from the end of the string.
RETURN
- Returns the position of where the needle exists relative to the beginning of the haystack string (independent of offset). Also note that string positions start at 0, and not 1. Returns -1 if the needle was not found.
EXAMPLES
in: res=<{stripos("ààaaaÓ","ó")}>.
out: res=5.
in: res=<{stripos("12345",3)}>.
out: res=2.
in: res=<{stripos("12345","34",3)}>.
out: res=-1.
SEE ALSO
{{ include("includes/strings.sn") }}
AUTHOR
Written by Pusnei Sergey and Caroline Laplante, <sergey@sednove.com>
MODIFICATIONS
1.0 2014-09-09 21:24:14 laplante@sednove.com
Edit