Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a easy way to strip down to something like:

Date: Time: Day Of Year:

from

2/11/2011@2:15 Date: %j time: %t Day of Year: %doy

share|improve this question

2 Answers

up vote 1 down vote accepted

A regex like this...

 /([0-9]{1,2}\/[0-9]{1,2}\/[0-9]{4})@([0-9]{1,2}:[0-9]{1,2})/

to pull out the date and time, then calculate the day based on the date

share|improve this answer

If you are using java there is a class that does this for you -- no need to get messy with regexp http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

share|improve this answer
Is there a way to do it without using the Date classes? – Snow_Mac Feb 12 '11 at 23:56
there is, you could write a regexp like in the below answer, but why would you want to do that if this is done for you in the DateFormat classes, another option is to use strptime() in the DateTime class in java and in just about every other programming language. – Jesse Cohen Feb 13 '11 at 0:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.