Why a regexpr? 
Do one explode() on the " "
Clean up the commas from the elements [1],[2] & [3] of the returned array
and on element[0] do an additional explode on "-"

cheers,
--t.

On Mon, 25 Mar 2002, Cameron Just wrote:

> Hi,
> 
> I am trying to pull out the following information via a regular expression.
> 
> The string I am searching on is 'wed-thurs 9:35, 14:56, 18:35'
> 
> and I want it to retreive
> wed
> thurs
> 9:35
> 14:56
> 18:35
> 
> The regular expression I am using is
> ([a-z]+)-([a-z]+) +([0-9]{1,2}:?[0-9]{0,2})[, ]*
> 
> It seems to be grabbing the
> wed
> thurs
> 9:35
> but I can't seem to retrieve the rest of the times.
> 
> Anyone have any ideas?
> 
> BTW
> There can be any number of 'times' in the string and also the 'times' can
> be with or without the colon and the minutes, hence the '}:?[0-9]{0,2}'
> part of the regexp.
> 
> 
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to