I have a string for example "lorem 110 ipusm" and I want to get the 110 I already tried this:
preg_match_all("/[0-9]/", $string, $ret);
but this is returning this:
Array
(
[0] => 1
[1] => 1
[2] => 0
)
I want something like this
Array
(
[0] => 110
)