read pls
If you want case-sensitivity, just use strpos.
/*! Find needle in hay, starting offset bytes in. */ virtual int strpos(string hay, string needle, int offset=0) {}
/*! Find needle in hay, starting offset bytes in. (Case insensitive) */ virtual int stripos(string hay, string needle, int offset=0) {}
Because the dump says stripos is the case sensitive one