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?
|
9
|
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?
|
|||
|
|
|
|
This should work reasonably well:
(Edited to make it considerably more concise.) |
||||||
|
|
|
Top marks Wedge!! :) |
||
|
|
|
|
Thanks Calanus, 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. |
|||
|
|
|
|
I use this code.It is VB code but you can easily translate it to C#. It works |
|||
|
|
|
|
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. |
||
|
|
|
|
Calanus, I am unable to access those links? Lubos, You idea looks to be on the right track. Could you please expand on the logic part :) |
||
|
|
|
|
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. |
|||
|
|
|
|
why massive lookup table? |
|||
|
|