Given the following string how can I match the entire number at the end of it?
$string = \"Conacu P PPL Europe/Bucharest 680979\";
I have t
The following regex should do the trick:
/(\d+)$/