I need to convert Day of the Month to how a person would say it.
For instance 4/26 would be spoken as Twenty-Sixth. 4/01 would be spoken as First.
I know I could use a look up table string foo = {"First", "Second", ...} then take the day of the Month number and pull out the string.
Is there a better way to do this?