Answers for "convert datetime to date in rails"

0

rails change date format

date = Date.new

date.strftime('%d/%m/%Y') # => "25/03/2022"

date.strftime('%Y/%m/%d') # => "2022/03/25"
Posted by: Guest on March-25-2022
0

date time string to time in rails

DateTime.parse("2022-01-07T00:50:49Z").strftime("%H:%M:%S")
Posted by: Guest on March-22-2022

Code answers related to "convert datetime to date in rails"

Browse Popular Code Answers by Language