> -----Original Message----- > From: Richard Colman [mailto:[EMAIL PROTECTED] > Sent: Sunday, May 22, 2005 11:32 PM > To: CF-Talk > Subject: REGEX parse a datetime string > > Any REGEX afficiandoes out there wish to tell how to parse: > > 2005 5 20 14 48 33
Is this the actual format? If so you just don't need regexs - the string is treatable as a list delimited by a space: ListGetAt(YourValue, YourPosition, " ") That should do it. Jim Davis ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:207399 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

