Ok, awseome...thanks for that...am getting it to work how I wish almost 🙂
Currently I have:
$message = preg_replace('/\d{1,3}/', '"\d{1,3}"', '<span style="color: rgb(0, 0, 205);">');
But now instead of outputting original numbers with the newly set " before and after. It will output "\d{2,3}" . Here's the example output:
<span style="color: rgb("\d{1,3}", "\d{1,3}", "\d{1,3}");">
How do I set it to just add the " before and after the original numbers?
Am alot closer, am almost there but not quite 🙂