Hi,
I want previous month name
for example
Time.now.strftime("%B")
will result the month name “August”
But i need to find the previous month if anybody knows reply me…
Hi,
I want previous month name
for example
Time.now.strftime("%B")
will result the month name “August”
But i need to find the previous month if anybody knows reply me…
Hi,
thistimelastmonth = Date.today << 1
lastmonth = thistimelastmonth.month
answer = Date::MONTHNAMES[month]
I wouldn’t recommend that you use those variable names, but hopefully
you get the idea.
On Wed, Aug 6, 2008 at 9:30 AM, Pragash Mr.
Shadowfirebird wrote:
Hi,
thistimelastmonth = Date.today << 1
lastmonth = thistimelastmonth.month
answer = Date::MONTHNAMES[month]I wouldn’t recommend that you use those variable names, but hopefully
you get the idea.On Wed, Aug 6, 2008 at 9:30 AM, Pragash Mr.
Your example looks cool
I took the liberty to change it to a one liner.
Date::MONTHNAMES[(Date.today << 1).month] # => “July”
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs