Ruby 取得指定月日期数的方法
时间:2021-07-29 07:42:56|栏目:Ruby|点击: 次
代码如下:
复制代码 代码如下:
require 'date'
day = Date.new(2008, 2, -1)
end_of_month = day.strftime('%d').to_i
year_and_month = day.strftime('%Y%m')
for today in 1..end_of_month do
p sprintf('%s%02d', year_and_month, today)
end
其他参考资料:
http://d.hatena.ne.jp/littlebuddha/20081023/1224744392
http://blog.ozacc.com/archives/001492.html
http://www.ftnk.jp/~fumi/cl/2005-10-14-6.html
http://www.namaraii.com/rubytips/?%C6%FC%C9%D5%A4%C8%BB%FE%B9%EF
上一篇:Ruby on Rails中的ActiveResource使用详解
栏 目:Ruby
下一篇:实例解析Ruby设计模式编程中Strategy策略模式的使用
本文标题:Ruby 取得指定月日期数的方法
本文地址:http://www.codeinn.net/misctech/162411.html