In my view I want to display the current date in \"mm/dd/yyyy\" format.
I think you can use .strftime:
.strftime
t = Time.now() t.strftime("The date is %m/%d/%y")
This should give "The date is 09/09/10". See here for a great list of the format codes for .strftime.
"The date is 09/09/10"