Re: List of Month Names
- To: mathgroup at smc.vnet.net
- Subject: [mg93647] Re: List of Month Names
- From: Raffy <raffy at mac.com>
- Date: Thu, 20 Nov 2008 04:56:12 -0500 (EST)
- References: <30565714.1226920768157.JavaMail.root@m02> <gg0qdj$ab$1@smc.vnet.net>
On Nov 19, 2:39 am, "David Park" <djmp... at comcast.net> wrote: > Thanks to everybody for the useful answers. > > David Park > djmp... at comcast.nethttp://home.comcast.net/~djmpark > > From: David Park [mailto:djmp... at comcast.net] > > Is there a short Mathematica command to obtain a list of month names or > short month names in order, without having to type them all in by hand? A= nd > same question for days of the week. > > Thanks in advance. > > David Park Table[DateString[{0, i}, {"MonthName"}], {i, 12}] Table[DateString[{0, 1, i + 1}, {"DayName"}], {i, 7}]