I have read the tutorial I understand the tutorial yet this will not work...........
here is my string.......
"POD DATE: 18.58 POD TIME 123456"
I want to extract the time part of the string "18.58"
So I am using..........
Code: Select all
$time=preg_split("/\d{2}.\d{2]/", $message);Can it be any simpler than that can it?
My output is giving me.........
Code: Select all
Array ( [0] => POD DATE: 18.58 POD TIME 123456 )Thanks,
Rob.