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 lookup table?
|
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 lookup table?
| ||||
|
feedback
|
|
This should work reasonably well:
(Edited to make it considerably more concise.) | |||||||||
feedback
|
|
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. | ||||
|
feedback
|
|
I use this code.It is VB code but you can easily translate it to C#. It works | ||||
|
feedback
|
|
why massive lookup table? | ||||
|
feedback
|
|
Here are the correct links to the posts by Justin Rogers: initial post, code only. There is also an article on CodeProject that addresses this issue. | |||
|
feedback
|
|
Here's the approach I took: http://www.blackbeltcoder.com/Articles/strings/converting-numbers-to-words | |||
|
feedback
|
this works fine from 1 to 19999 will update soon after i complete it | ||||
|
feedback
|
21to returntwenty-one, nottwenty one. Hyphenation matters:three thousand four hundred and seventy-six. – TRiG Feb 19 '10 at 18:13