Hi,
Can anyone tell me how I can add 10 days to this date format please?
Time.now.localtime.strftime("%d-%b-%Y")
Thanks
Aidy
Hi,
Can anyone tell me how I can add 10 days to this date format please?
Time.now.localtime.strftime("%d-%b-%Y")
Thanks
Aidy
SECONDS_PER_DAY = 60 * 60 * 24
(Time.now + 10*SECONDS_PER_DAY).localtime.strftime("%d-%b-%Y")
Ideally you want to do the date/time manipulations before converting
to a String. Otherwise you have to parse the string, do the date
manipulations, and convert back to a String.
Eric
On Aug 10, 11:52 am, aidy <aidy.le...@googlemail.com> wrote:
Can anyone tell me how I can add 10 days to this date format please?
Time.now.localtime.strftime("%d-%b-%Y")
====
Rails and Ruby training available at http://LearnRuby.com .