Hello
How do you remove any characters from a string except for numbers from 0-9?
example;
$string = '3s34d62.45,098,e43a,148975';
and once filtered should look like this below,
$string = '334624509843148975';
Thank you.
/[0-9]/