I am trying to extact some info out of a string
$str = "foo (8:30-9:00 PM, ET/PT) bar";
I need to get out:
8:30
9:00
PM
ereg_match_all("/((\d{1}?(.*)PT))/",$str,$match);
gets me (8:30-9:00 PM, ET/PT)
but I can't seem to figure out the sub parses.
thanks