Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Php

Idiom #62 Find substring position

Set i to the first position of string y inside string x, if exists.

Specify if i should be regarded as a character index or as a byte index.

Explain the behavior when y is not contained in x.

$i = mb_strpos($x, $y, 0, 'UTF-8');

Requires multibyte string extension.
#include <string.h>
int i=(int)(x-strstr(x,y));

New implementation...