I have a date object in Rails, which I’d like to format.
I’ve made it this far:
delivery_time.date.strftime("%w, %d/%m/%Y")
I’d like it to print out ‘Wednesday, 04/01/2012’
Is there a quick method to change the ‘%w’ into ‘Wednesday’?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looking at the Ruby docs for
strftimeThe
%Acharacter is the full day name.