I get a string like this: Last Draw - 11 10 12
I need to replace Last Draw - 11 10 12 with simple 11.10.12.
So I need to remove the "Last Draw" phrase and put dots between the numbers.
I tried several times and I got either wrong result or error.
$result = preg_replace('LAST DRAW', "", $result );
Last time I tried this code: $result = preg_replace('LAST DRAW', "", $result ); with no result.
Thanks for any advice!