Is there an easy way to create ordinals in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T02:46:07Z http://stackoverflow.com/feeds/question/20156 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c 20 Is there an easy way to create ordinals in C#? GateKiller 2008-08-21T14:55:48Z 2009-06-09T09:29:50Z <p>Is there an easy way in C# to create <a href="http://is.gd/1NvM" rel="nofollow">Ordinals</a> for a number? For example:</p> <ul> <li>1 returns 1st</li> <li>2 returns 2nd</li> <li>3 returns 3rd</li> <li>...etc</li> </ul> <p>Can this be done through <code>String.Format()</code> or are there any functions available to do this?</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/20166#20166 8 Answer by Stu for Is there an easy way to create ordinals in C#? Stu 2008-08-21T14:59:10Z 2008-08-21T15:19:24Z <p>You'll have to roll your own. From the top of my head:</p> <pre><code>public static string Ordinal(this int number) { var work = number.ToString(); if (number == 11 || number == 12 || number == 13) return work + "th"; switch (number % 10) { case 1: work += "st"; break; case 2: work += "nd"; break; case 3: work += "rd"; break; default: work += "th"; break; } return work; } </code></pre> <p>You can then do </p> <pre><code>Console.WriteLine(432.Ordinal()); </code></pre> <p>Edited for 11/12/13 exceptions. I DID say from the top of my head :-)</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/20167#20167 5 Answer by Ian Nelson for Is there an easy way to create ordinals in C#? Ian Nelson 2008-08-21T14:59:17Z 2008-08-21T21:17:38Z <p>How's this?</p> <p><a href="http://csharpaspnet.blogspot.com/2007/01/ordinal-numbers-in-c-like-1-as-1st-3-as.html" rel="nofollow"><a href="http://csharpaspnet.blogspot.com/2007/01/ordinal-numbers-in-c-like-1-as-1st-3-as.html" rel="nofollow">http://csharpaspnet.blogspot.com/2007/01/ordinal-numbers-in-c-like-1-as-1st-3-as.html</a></a></p> <p>@Stu - love the elegance of making an extension method out of this.</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/20175#20175 37 Answer by samjudson for Is there an easy way to create ordinals in C#? samjudson 2008-08-21T15:03:47Z 2008-08-21T15:03:47Z <p>This page gives you a complete listing of all custom numerical formatting rules:</p> <p><a href="http://msdn.microsoft.com/en-us/library/0c899ak8.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0c899ak8.aspx</a></p> <p>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.</p> <pre><code>public string AddOrdinal(int num) { switch(num % 100) { case 11: case 12: case 13: return num.ToString() + "th"; } switch(num % 10) { case 1: return num.ToString() + "st"; case 2: return num.ToString() + "nd"; case 3: return num.ToString() + "rd"; default: return num.ToString() + "th"; } } </code></pre> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/31066#31066 3 Answer by Jesse Slicer for Is there an easy way to create ordinals in C#? Jesse Slicer 2008-08-27T19:56:15Z 2008-08-27T19:56:15Z <p>I rather liked elements from both Stu's and samjudson's solutions and worked them together into what I think is a usable combo:</p> <pre><code> public static string Ordinal (this int number) { const string TH = "th"; var s = number.ToString (); number %= 100; if ((number &gt;= 11) &amp;&amp; (number &lt;= 13)) { return s + TH; } switch (number % 10) { case 1: return s + "st"; case 2: return s + "nd"; case 3: return s + "rd"; default: return s + TH; } } </code></pre> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/111542#111542 4 Answer by Ryan McGeary for Is there an easy way to create ordinals in C#? Ryan McGeary 2008-09-21T17:52:01Z 2008-09-21T17:52:01Z <p>While I haven't benchmarked this yet, you should be able to get better performance by avoiding all the conditional case statements.</p> <p>This is java, but a port to C# is trivial:</p> <pre><code>public class NumberUtil { final static String[] ORDINAL_SUFFIXES = { "th", "st", "nd", "rd", "th", "th", "th", "th", "th", "th" }; public static String ordinalSuffix(int value) { int n = Math.abs(value); int lastTwoDigits = n % 100; int lastDigit = n % 10; int index = (lastTwoDigits &gt;= 11 &amp;&amp; lastTwoDigits &lt;= 13) ? 0 : lastDigit; return ORDINAL_SUFFIXES[index]; } public static String toOrdinal(int n) { return new StringBuffer().append(n).append(ordinalSuffix(n)).toString(); } } </code></pre> <p>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.</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/115438#115438 16 Answer by roomaroo for Is there an easy way to create ordinals in C#? roomaroo 2008-09-22T15:17:33Z 2008-09-22T15:17:33Z <p>Remember internationalisation!</p> <p>The solutions here only work for English. Things get a lot more complex if you need to support other languages. </p> <p>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!</p> <p>So if your software needs to support different languages, try to avoid ordinals.</p> http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c/620504#620504 4 Answer by Si for Is there an easy way to create ordinals in C#? Si 2009-03-06T21:31:34Z 2009-03-06T21:39:07Z <p>My version of Jesse's version of Stu's and samjudson's versions :)</p> <p>Included unit test to show that the accepted answer is incorrect when number &lt; 1</p> <pre><code> /// &lt;summary&gt; /// Get the ordinal value of positive integers. /// &lt;/summary&gt; /// &lt;remarks&gt; /// Only works for english-based cultures. /// Code from: http://stackoverflow.com/questions/20156/is-there-a-quick-way-to-create-ordinals-in-c/31066#31066 /// With help: http://www.wisegeek.com/what-is-an-ordinal-number.htm /// &lt;/remarks&gt; /// &lt;param name="number"&gt;The number.&lt;/param&gt; /// &lt;returns&gt;Ordinal value of positive integers, or &lt;see cref="int.ToString"/&gt; if less than 1.&lt;/returns&gt; public static string Ordinal(this int number) { const string TH = "th"; string s = number.ToString(); // Negative and zero have no ordinal representation if (number &lt; 1) return s; number %= 100; if ((number &gt;= 11) &amp;&amp; (number &lt;= 13)) { return s + TH; } switch (number % 10) { case 1: return s + "st"; case 2: return s + "nd"; case 3: return s + "rd"; default: return s + TH; } } [Test] public void Ordinal_ReturnsExpectedResults() { Assert.AreEqual("-1", (1-2).Ordinal()); Assert.AreEqual("0", 0.Ordinal()); Assert.AreEqual("1st", 1.Ordinal()); Assert.AreEqual("2nd", 2.Ordinal()); Assert.AreEqual("3rd", 3.Ordinal()); Assert.AreEqual("4th", 4.Ordinal()); Assert.AreEqual("5th", 5.Ordinal()); Assert.AreEqual("6th", 6.Ordinal()); Assert.AreEqual("7th", 7.Ordinal()); Assert.AreEqual("8th", 8.Ordinal()); Assert.AreEqual("9th", 9.Ordinal()); Assert.AreEqual("10th", 10.Ordinal()); Assert.AreEqual("11th", 11.Ordinal()); Assert.AreEqual("12th", 12.Ordinal()); Assert.AreEqual("13th", 13.Ordinal()); Assert.AreEqual("14th", 14.Ordinal()); Assert.AreEqual("20th", 20.Ordinal()); Assert.AreEqual("21st", 21.Ordinal()); Assert.AreEqual("22nd", 22.Ordinal()); Assert.AreEqual("23rd", 23.Ordinal()); Assert.AreEqual("24th", 24.Ordinal()); Assert.AreEqual("100th", 100.Ordinal()); Assert.AreEqual("101st", 101.Ordinal()); Assert.AreEqual("102nd", 102.Ordinal()); Assert.AreEqual("103rd", 103.Ordinal()); Assert.AreEqual("104th", 104.Ordinal()); Assert.AreEqual("110th", 110.Ordinal()); Assert.AreEqual("111th", 111.Ordinal()); Assert.AreEqual("112th", 112.Ordinal()); Assert.AreEqual("113th", 113.Ordinal()); Assert.AreEqual("114th", 114.Ordinal()); Assert.AreEqual("120th", 120.Ordinal()); Assert.AreEqual("121st", 121.Ordinal()); Assert.AreEqual("122nd", 122.Ordinal()); Assert.AreEqual("123rd", 123.Ordinal()); Assert.AreEqual("124th", 124.Ordinal()); } </code></pre>