Hello.
I have a regular expression.
$match = '43243'; @preg_match('([0-9]+)', $match, $title); echo $title[1];
In general, the problem is this: it finds regular numbers, but you need to not find numbers when there are also symbols in $match
. How to do?