nomad3212 Posted June 2, 2011 Share Posted June 2, 2011 I have to extract a date from an array but i dont know on what index this date is. All I know is that the date is in the format "dd/mm/yy". I ran a loop through all the indices of array to search for this date pattern but it doesn't seem to be working. The pattern i implemented is as below: /^([0-9]{2})/([0-9]{2})/([0-9]{2})$/ can anyone help me please ??? Link to comment https://forums.phpfreaks.com/topic/238263-date-evaluation-using-regular-expression/ Share on other sites More sharing options...
WebStyles Posted June 2, 2011 Share Posted June 2, 2011 http://www.phpfreaks.com/forums/index.php?topic=317054.0 deals with a similar issue. they used: preg_match_all('/\d\d-[a-z][a-z][a-z]-\d\d\d\d/i', $text) to find a date with the format dd-MON-dddd. Can you figure it out from here? Link to comment https://forums.phpfreaks.com/topic/238263-date-evaluation-using-regular-expression/#findComment-1224422 Share on other sites More sharing options...
nomad3212 Posted June 7, 2011 Author Share Posted June 7, 2011 yes thank you very much for your time and help !!! Link to comment https://forums.phpfreaks.com/topic/238263-date-evaluation-using-regular-expression/#findComment-1226520 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.