C# Convert Integers into Written Numbers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:58:20Z http://stackoverflow.com/feeds/question/3213 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers 11 C# Convert Integers into Written Numbers GateKiller 2008-08-06T09:21:09Z 2009-02-23T16:58:42Z <p>Is there an efficient method of converting an integer into the written numbers for example:</p> <p>String Written = IntegerToWritten(21);</p> <p>would return "Twenty One"</p> <p>Is there any way of doing this that doesn't involve a massive lookup table?</p> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3215#3215 1 Answer by lubos hasko for C# Convert Integers into Written Numbers lubos hasko 2008-08-06T09:22:35Z 2008-08-06T09:47:36Z <p>why massive lookup table?</p> <pre><code>string GetWrittenInteger(int n) { string[] a = new string[] {"One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine" } string[] b = new string[] { "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen" } string[] c = new string[] {"Twenty", "Thirty", "Forty", "Sixty", "Seventy", "Eighty", "Ninety"}; string[] d = new string[] {"Hundred", "Thousand", "Million"} string s = n.ToString(); for (int i = 0; i &lt; s.Length; i++) { // logic (too lazy but you get the idea) } } </code></pre> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3216#3216 5 Answer by Calanus for C# Convert Integers into Written Numbers Calanus 2008-08-06T09:26:04Z 2008-08-06T10:12:37Z <P>Justin Rogers has a "NumbersToEnglish" class which should do the job for you nicely!</P> <P>Initial posting. <BR><A href="http://weblogs.asp.net/justin_rogers/archive/2004/06/09/151675.aspx" rel="nofollow">http://weblogs.asp.net/justin_rogers/archive/2004/06/09/151675.aspx</A> </P> <P>Finalized Source Code <BR><A href="http://weblogs.asp.net/justin_rogers/articles/151757.aspx" rel="nofollow">http://weblogs.asp.net/justin_rogers/articles/151757.aspx</A> </P> <P>It does have a bit of an internal lookup table but I don't really know how you are going to be able to get away from that.</P> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3222#3222 -1 Answer by GateKiller for C# Convert Integers into Written Numbers GateKiller 2008-08-06T09:33:55Z 2008-08-06T09:33:55Z <p>Calanus, I am unable to access those links?</p> <p>Lubos, You idea looks to be on the right track. Could you please expand on the logic part :)</p> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3223#3223 0 Answer by Yaakov Ellis for C# Convert Integers into Written Numbers Yaakov Ellis 2008-08-06T09:37:57Z 2008-08-06T09:37:57Z <p>Here are the correct links to the posts by Justin Rogers: <a href="http://weblogs.asp.net/justin_rogers/archive/2004/06/09/151675.aspx" rel="nofollow">initial post</a>, <a href="http://weblogs.asp.net/justin_rogers/articles/151757.aspx" rel="nofollow">code only</a>.</p> <p>There is also an <a href="http://www.codeproject.com/KB/cs/codesamples.aspx" rel="nofollow">article on CodeProject</a> that addresses this issue.</p> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3228#3228 2 Answer by Nick Masao for C# Convert Integers into Written Numbers Nick Masao 2008-08-06T09:46:18Z 2008-08-06T10:14:12Z <p>I use this code.It is VB code but you can easily translate it to C#. It works</p> <pre><code>Function NumberToText(ByVal n As Integer) As String<br><br> Select Case n<br>Case 0<br> Return ""<br><br>Case 1 To 19<br> Dim arr() As String = {"One","Two","Three","Four","Five","Six","Seven", _<br> "Eight","Nine","Ten","Eleven","Twelve","Thirteen","Fourteen", _<br> "Fifteen","Sixteen","Seventeen","Eighteen","Nineteen"}<br> Return arr(n-1) &amp; " "<br><br>Case 20 to 99<br> Dim arr() as String = {"Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety"}<br> Return arr(n\10 -2) &amp; " " &amp; NumberToText(n Mod 10)<br><br>Case 100 to 199<br> Return "One Hundred " &amp; NumberToText(n Mod 100)<br><br>Case 200 to 999<br> Return NumberToText(n\100) &amp; "Hundreds " &amp; NumberToText(n mod 100)<br><br>Case 1000 to 1999<br> Return "One Thousand " &amp; NumberToText(n Mod 1000)<br><br>Case 2000 to 999999<br> Return NumberToText(n\1000) &amp; "Thousands " &amp; NumberToText(n Mod 1000)<br><br>Case 1000000 to 1999999<br> Return "One Million " &amp; NumberToText(n Mod 1000000)<br><br>Case 1000000 to 999999999<br> Return NumberToText(n\1000000) &amp; "Millions " &amp; NumberToText(n Mod 1000000)<br><br>Case 1000000000 to 1999999999<br> Return "One Billion " &amp; NumberTotext(n Mod 1000000000)<br><br>Case Else<br> Return NumberToText(n\1000000000) &amp; "Billion " _<br> &amp; NumberToText(n mod 1000000000)<br>End Select<br>End Function<br></code></pre> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3253#3253 0 Answer by GateKiller for C# Convert Integers into Written Numbers GateKiller 2008-08-06T10:15:17Z 2009-01-05T13:07:02Z <p>Thanks Calanus,</p> <p>Thats the sort of solution I was looking for. I understand there needs to be a small amount of lookup information but didn't want a solution which required a precompiled lookup table.</p> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3267#3267 20 Answer by Wedge for C# Convert Integers into Written Numbers Wedge 2008-08-06T10:31:24Z 2008-08-06T12:04:23Z <p>This should work reasonably well:</p> <pre><code>public static class HumanFriendlyInteger<br>{<br> static string[] ones = new string[] { "", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine" };<br> static string[] teens = new string[] { "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen" };<br> static string[] tens = new string[] { "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety" };<br> static string[] thousandsGroups = { "", " Thousand", " Million", " Billion" };<br><br> private static string FriendlyInteger(int n, string leftDigits, int thousands)<br> {<br> if (n == 0)<br> {<br> return leftDigits;<br> }<br> string friendlyInt = leftDigits;<br> if (friendlyInt.Length &gt; 0)<br> {<br> friendlyInt += " ";<br> }<br><br> if (n &lt; 10)<br> {<br> friendlyInt += ones[n];<br> }<br> else if (n &lt; 20)<br> {<br> friendlyInt += teens[n - 10];<br> }<br> else if (n &lt; 100)<br> {<br> friendlyInt += FriendlyInteger(n % 10, tens[n / 10 - 2], 0);<br> }<br> else if (n &lt; 1000)<br> {<br> friendlyInt += FriendlyInteger(n % 100, (ones[n / 100] + " Hundred"), 0);<br> }<br> else<br> {<br> friendlyInt += FriendlyInteger(n % 1000, FriendlyInteger(n / 1000, "", thousands+1), 0);<br> }<br><br> return friendlyInt + thousandsGroups[thousands];<br> }<br><br> public static string IntegerToWritten(int n)<br> {<br> if (n == 0)<br> {<br> return "Zero";<br> }<br> else if (n &lt; 0)<br> {<br> return "Negative " + IntegerToWritten(-n);<br> }<br><br> return FriendlyInteger(n, "", 0);<br> }<br><br>}<br></code></pre> <p>(Edited to make it considerably more concise.)</p> http://stackoverflow.com/questions/3213/c-convert-integers-into-written-numbers/3283#3283 -1 Answer by GateKiller for C# Convert Integers into Written Numbers GateKiller 2008-08-06T11:04:19Z 2008-08-06T11:04:19Z <p>Top marks Wedge!! :)</p>