Month and day

Assuming that to day it January 1 2007 when the
following code is and the response is 1. Is there a
way to get back 01? I’m also looking to get 01 for
the day. It looks like %m and %d is what I’m looking
for but I don’t know how to implement the formatting.

t = Time.now
puts t.mon
=> 1

Jeff

Never mind I to got it. It most be putting it in
writing jogs the brain.

t = Time.now

puts t.strftime(“%m%d”)

Jeff
— Jeffrey B. [email protected] wrote:

=> 1

Jeff


Be a better Globetrotter. Get better travel answers
from someone who knows. Yahoo! Answers - Check it
out.

On 7/17/07, Jeffrey B. [email protected] wrote:

Assuming that to day it January 1 2007 when the
following code is and the response is 1. Is there a
way to get back 01? I’m also looking to get 01 for
the day. It looks like %m and %d is what I’m looking
for but I don’t know how to implement the formatting.

t = Time.now
puts t.mon
=> 1

irb> ‘%02d’ % Time.now.mon
07
=> nil

Todd