Is there an efficient method of converting an integer into the written numbers, for example:
string Written = IntegerToWritten(21);
would return "Twenty One".
Is there any way of doing this that doesn't involve a massive look-up table?
|
This should work reasonably well:
(Edited to make it considerably more concise.) |
|||||||||
|
|
Justin Rogers has a "NumbersToEnglish" class which should do the job for you nicely! Initial posting. Finalized Source Code 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. |
||||
|
|
|
I use this code.It is VB code but you can easily translate it to C#. It works |
||||
|
|
|
why massive lookup table? |
||||
|
|
this works fine from 1 to 19999 will update soon after i complete it |
||||
|
|
|
Here is a C# Console Application that will return whole numbers as well as decimals. |
|||
|
|
21to returntwenty-one, nottwenty one. Hyphenation matters:three thousand four hundred and seventy-six. – TRiG Feb 19 '10 at 18:13