标签: ruby-on-rails ruby date strptime strftime
我的约会对象= 2015年1月1日。 我做到了 date_formatted = date.strftime('%Y%W')返回“201500”
date_formatted = date.strftime('%Y%W')
然后当我试图做Date.strptime(date_formatted, '%Y%W')时,即使原始字符串是从strptime的对应srftime返回的,它也会抛出无效的日期错误。
Date.strptime(date_formatted, '%Y%W')
答案 0 :(得分:0)
找到解决方案。 Time.strptime(date_formatted, '%Y%W')是可行的。
Time.strptime(date_formatted, '%Y%W')