I know this will give me the day of the month as a number (11, 21, 23):
SimpleDateFormat formatDayOfMonth = new SimpleDateFormat("d");
But how do you format the day of the month to say 11th, 21st or 23rd in Java?
|
I know this will give me the day of the month as a number (
But how do you format the day of the month to say
| |||||||||
feedback
|
The table from @kaliatech is nice, but since the same information is repeated, it opens the chance for a bug. Such a bug actually exists in the table for | |||||||||||||||||
feedback
|
|
There is nothing in JDK to do this.
I didn't run this through a compiler, so might be errors, but you get the idea. EDIT: I saw some quick down votes at first. Probably because of the perceived inefficiencies. Same thing, but less likely to offend:
| |||||||||||||
feedback
|
|
Because most countries don't use the format "October 24th, 2010," that functionality was never incorporated into most programming languages. There are workarounds, however. You can break up the two-digit day and use the last digit inside of a switch statement. | |||
|
feedback
|
| ||||
|
feedback
|
|
There is a simpler and sure way of doing this. The function you'll need to use is getDateFromDateString(dateString); It basically removes the st/nd/rd/th off of a date string and simply parses it. You can change your SimpleDateFormat to anything and this will work.
} | |||
|
feedback
|
| ||||
|
feedback
|