Hi All,
I need some ideas on how to convert the day of month to words like this:
Day of Month Word
------------ --------------
1 first
2 second
...
16 sixteenth
30 thirtieth
---------------------------------
Should I consider a 31-element array like this?:
["first","second","third"...]
Then index the array with the day of the month?
What do you think?
-Jeff
I need some ideas on how to convert the day of month to words like this:
Day of Month Word
------------ --------------
1 first
2 second
...
16 sixteenth
30 thirtieth
---------------------------------
Should I consider a 31-element array like this?:
["first","second","third"...]
Then index the array with the day of the month?
What do you think?
-Jeff