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
|
|
|
A regex like this...
to pull out the date and time, then calculate the day based on the date |
|||
|
|
|
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 |
|||||
|