Is there an easy way in C# to create Ordinals for a number? For example:
- 1 returns 1st
- 2 returns 2nd
- 3 returns 3rd
- ...etc
Can this be done through String.Format() or are there any functions available to do this?
|
8
|
|
|
|
|
|
This page gives you a complete listing of all custom numerical formatting rules: http://msdn.microsoft.com/en-us/library/0c899ak8.aspx As you can see, there is nothing in there about ordinals, so it can't be done using String.Format. However its not really that hard to write a function to do it.
|
||||||
|
|
|
You'll have to roll your own. From the top of my head:
You can then do
Edited for 11/12/13 exceptions. I DID say from the top of my head :-) |
|||
|
|
|
How's this? http://csharpaspnet.blogspot.com/2007/01/ordinal-numbers-in-c-like-1-as-1st-3-as.html @Stu - love the elegance of making an extension method out of this. |
|||
|
|
|
|
I rather liked elements from both Stu's and samjudson's solutions and worked them together into what I think is a usable combo:
|
||||||||||||||
|
|
|
While I haven't benchmarked this yet, you should be able to get better performance by avoiding all the conditional case statements. This is java, but a port to C# is trivial:
Note, the reduction of conditionals and the use of the array lookup should speed up performance if generating a lot of ordinals in a tight loop. However, I also concede that this isn't as readable as the case statement solution. |
||
|
|
|
|
Remember internationalisation! The solutions here only work for English. Things get a lot more complex if you need to support other languages. For example, in Spanish "1st" would be written as "1.o", "1.a", "1.os" or "1.as" depending on whether the thing you're counting is masculine, feminine or plural! So if your software needs to support different languages, try to avoid ordinals. |
||||||||
|
|
|
My version of Jesse's version of Stu's and samjudson's versions :) Included unit test to show that the accepted answer is incorrect when number < 1
|
|||
|
|