vote up 0 vote down star

How to properly extract a time only from the datetime object (post.created_at, to be precise) with/without the influence of TimeZone? How to extract the day, month, year? How to extract the day/month/year via a custom pattern (is it possible)?

flag

1 Answer

vote up 5 vote down check

Time in String format:

post.created_at.strftime("FORMAT STRING HERE")
# Without the influence of time-zone: I take it that you want UTC
post.created_at.utc.strftime("FORMAT STRING HERE")

Link for the strftime documentation: http://ruby-doc.org/core/classes/Time.html#M000298

For getting the hour, minute and second values:

post.created_at.hour
post.created_at.min
post.created_at.sec
link|flag
Shoot, that's exactly what I needed! Thanks! – gmile Aug 11 at 13:11

Your Answer

Get an OpenID
or

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