"\" strpos

PHP
strpos ( string $haystack , mixed $needle [, int $offset = 0 ] ) : int$mystr = 'abc';
$findMe   = 'a';
$position = strpos($mystr, $findMe);
Source

Also in PHP: