Hay, i have a string like this:
v8gn5.8gnr4nggb58gng.g95h58g.n48fn49t.t8t8t57
I want to strip out all the characters leaving just numbers (
$input = 'some str1ng 234'; $newString = preg_replace("/[^0-9.]/", '', $input);